Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-loader/Cargo.toml')
| -rw-r--r-- | helix-loader/Cargo.toml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/helix-loader/Cargo.toml b/helix-loader/Cargo.toml index acbdc5d5..469bedc1 100644 --- a/helix-loader/Cargo.toml +++ b/helix-loader/Cargo.toml @@ -19,9 +19,10 @@ 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" # TODO: these two should be on !wasm32 only @@ -29,6 +30,8 @@ log = "0.4" # 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" |