summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..c1c37e2
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,24 @@
+[package]
+name = "iris"
+version = "0.1.0"
+authors = ["Freya Murphy <contact@freyacat.org>"]
+edition = "2021"
+description = "A locking plugin manager for vim"
+license-file = "LICENSE"
+
+[lints.rust]
+unsafe_code = "forbid"
+
+[lints.clippy]
+all = "warn"
+nursery = "warn"
+
+[dependencies]
+dirs = "5"
+env_logger = "0.11.6"
+git2 = "0.20"
+log = "0.4"
+serde = "1"
+thiserror = "2"
+toml = "0.8"
+url = "2"