Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/Cargo.toml')
| -rw-r--r-- | helix-term/Cargo.toml | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index 030bf090..555ee876 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -19,7 +19,7 @@ assets = [ { source = "target/release/hx", dest = "/usr/lib/helix/", mode = "755" }, { source = "../contrib/hx_launcher.sh", dest = "/usr/bin/hx", mode = "755" }, { source = "../runtime/*", dest = "/usr/lib/helix/runtime/", mode = "644" }, - { source = "../runtime/grammars/*", dest = "/usr/lib/helix/runtime/grammars/", mode = "644" }, # to avoid sources/ + { source = "../runtime/grammars/*", dest = "/usr/lib/helix/runtime/grammars/", mode = "644" }, # to avoid sources/ { source = "../runtime/queries/**/*", dest = "/usr/lib/helix/runtime/queries/", mode = "644" }, { source = "../runtime/themes/**/*", dest = "/usr/lib/helix/runtime/themes/", mode = "644" }, { source = "../README.md", dest = "/usr/share/doc/helix/", mode = "644" }, @@ -53,12 +53,28 @@ helix-loader = { path = "../helix-loader" } anyhow = "1" once_cell = "1.21" -tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] } -tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["termina", "crossterm"] } +tokio = { version = "1", features = [ + "rt", + "rt-multi-thread", + "io-util", + "io-std", + "time", + "process", + "macros", + "fs", + "parking_lot", +] } +tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = [ + "termina", + "crossterm", +] } termina = { workspace = true, features = ["event-stream"] } signal-hook = "0.4" tokio-stream = "0.1" -futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false } +futures-util = { version = "0.3", features = [ + "std", + "async-await", +], default-features = false } arc-swap.workspace = true termini = "1" indexmap = { version = "2.14", features = ["serde"] } @@ -90,14 +106,14 @@ toml.workspace = true serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } -dashmap = "6.2" - parking_lot.workspace = true +dashmap = "6.0" +tree-house = { workspace = true, features = ["fixtures"] } [target.'cfg(windows)'.dependencies] crossterm = { version = "0.28", features = ["event-stream"] } -[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100 +[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100 signal-hook-tokio = { version = "0.4", features = ["futures-v0_3"] } libc = "0.2.186" |