Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-loader/Cargo.toml')
-rw-r--r--helix-loader/Cargo.toml36
1 files changed, 16 insertions, 20 deletions
diff --git a/helix-loader/Cargo.toml b/helix-loader/Cargo.toml
index acbdc5d5..c8cbf6d1 100644
--- a/helix-loader/Cargo.toml
+++ b/helix-loader/Cargo.toml
@@ -1,27 +1,22 @@
[package]
name = "helix-loader"
-description = "Build bootstrapping for Helix crates"
-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
-
-[[bin]]
-name = "hx-loader"
-path = "src/main.rs"
+version = "0.6.0"
+description = "A post-modern text editor."
+authors = ["Blaž Hrastnik <[email protected]>"]
+edition = "2021"
+license = "MPL-2.0"
+categories = ["editor"]
+repository = "https://github.com/helix-editor/helix"
+homepage = "https://helix-editor.com"
[dependencies]
-helix-stdx = { path = "../helix-stdx" }
-
anyhow = "1"
serde = { version = "1.0", features = ["derive"] }
-toml.workspace = true
-etcetera = "0.10"
-once_cell = "1.21"
+toml = "0.5"
+etcetera = "0.3"
+tree-sitter = "0.20"
+once_cell = "1.9"
+
log = "0.4"
# TODO: these two should be on !wasm32 only
@@ -29,6 +24,7 @@ log = "0.4"
# cloning/compiling tree-sitter grammars
cc = { version = "1" }
threadpool = { version = "1.0" }
-tempfile.workspace = true
-tree-house.workspace = true
+[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
+libloading = "0.7"
+