Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-loader/Cargo.toml')
| -rw-r--r-- | helix-loader/Cargo.toml | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/helix-loader/Cargo.toml b/helix-loader/Cargo.toml index acbdc5d5..760205e1 100644 --- a/helix-loader/Cargo.toml +++ b/helix-loader/Cargo.toml @@ -1,27 +1,25 @@ [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 +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" [[bin]] name = "hx-loader" path = "src/main.rs" [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.4" +tree-sitter = "0.20" +once_cell = "1.16" log = "0.4" # TODO: these two should be on !wasm32 only @@ -29,6 +27,6 @@ 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" |