Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-loader/Cargo.toml')
| -rw-r--r-- | helix-loader/Cargo.toml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/helix-loader/Cargo.toml b/helix-loader/Cargo.toml index acbdc5d5..18747538 100644 --- a/helix-loader/Cargo.toml +++ b/helix-loader/Cargo.toml @@ -15,20 +15,22 @@ 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.7" +etcetera = "0.8" +tree-sitter.workspace = true +once_cell = "1.19" log = "0.4" +which = "5.0.0" # TODO: these two should be on !wasm32 only # cloning/compiling tree-sitter grammars cc = { version = "1" } threadpool = { version = "1.0" } -tempfile.workspace = true +tempfile = "3.9.0" +dunce = "1.0.4" -tree-house.workspace = true +[target.'cfg(not(target_arch = "wasm32"))'.dependencies] +libloading = "0.8" |