Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/Cargo.toml')
| -rw-r--r-- | helix-term/Cargo.toml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index ab9f166b..f49c5a89 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -61,7 +61,7 @@ tokio-stream = "0.1" futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false } arc-swap = { version = "1.7.1" } termini = "1" -indexmap = "2.12" +indexmap = "2.11" # Logging fern = "0.7" @@ -70,11 +70,7 @@ log = "0.4" # File picker nucleo.workspace = true -# MSRV: update once the MSRV is >=1.85 -ignore = "=0.4.23" -grep-regex = "=0.1.13" -grep-searcher = "=0.1.14" -grep-matcher = "=0.1.7" +ignore.workspace = true # markdown doc rendering pulldown-cmark = { version = "0.13", default-features = false } # file type detection @@ -91,15 +87,18 @@ toml.workspace = true serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } +# ripgrep for global search +grep-regex = "0.1.13" +grep-searcher = "0.1.14" + 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 signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] } -libc = "0.2.177" +libc = "0.2.176" [build-dependencies] helix-loader = { path = "../helix-loader" } |