Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-config/Cargo.toml')
-rw-r--r--helix-config/Cargo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/helix-config/Cargo.toml b/helix-config/Cargo.toml
new file mode 100644
index 00000000..ba9bbb5d
--- /dev/null
+++ b/helix-config/Cargo.toml
@@ -0,0 +1,24 @@
+[package]
+name = "helix-config"
+description = "Helix editor core editing primitives"
+include = ["src/**/*", "README.md"]
+version.workspace = true
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
+rust-version.workspace = true
+categories.workspace = true
+repository.workspace = true
+homepage.workspace = true
+
+[dependencies]
+ahash = "0.8.6"
+hashbrown = { version = "0.14.3", features = ["raw"] }
+parking_lot = "0.12"
+anyhow = "1.0.79"
+indexmap = { version = "2.1.0", features = ["serde"] }
+serde = { version = "1.0" }
+serde_json = "1.0"
+
+regex-syntax = "0.8.2"
+which = "5.0.0"