Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 65 |
1 files changed, 56 insertions, 9 deletions
@@ -319,6 +319,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" [[package]] +name = "ecow" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78e4f79b296fbaab6ce2e22d52cb4c7f010fe0ebe7a32e34fa25885fd797bd02" + +[[package]] name = "either" version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -407,6 +413,24 @@ dependencies = [ ] [[package]] +name = "filesentry" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78347b6abab87ab712230b933994b5611302f82d64747e681477adcf26dedbd" +dependencies = [ + "bitflags", + "ecow", + "hashbrown 0.15.5", + "ignore", + "log", + "memchr", + "mio", + "papaya", + "rustix 1.1.2", + "walkdir", +] + +[[package]] name = "filetime" version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1392,11 +1416,14 @@ dependencies = [ "bitflags", "chrono", "encoding_rs", + "filesentry", "foldhash 0.2.0", "globset", + "helix-event", "helix-loader", "helix-parsec", "helix-stdx", + "ignore", "imara-diff 0.2.0", "indoc", "log", @@ -1481,6 +1508,7 @@ dependencies = [ "futures-util", "globset", "helix-core", + "helix-event", "helix-loader", "helix-lsp-types", "helix-stdx", @@ -2049,9 +2077,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.4" +version = "2.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" [[package]] name = "memmap2" @@ -2082,15 +2110,14 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.2" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" +checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" dependencies = [ - "hermit-abi", "libc", "log", "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -2160,6 +2187,16 @@ dependencies = [ ] [[package]] +name = "papaya" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f92dd0b07c53a0a0c764db2ace8c541dc47320dad97c2200c2a637ab9dd2328f" +dependencies = [ + "equivalent", + "seize", +] + +[[package]] name = "parking_lot" version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2396,7 +2433,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.11.0", - "windows-sys 0.59.0", + "windows-sys 0.61.1", ] [[package]] @@ -2421,6 +2458,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] +name = "seize" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521" +dependencies = [ + "libc", + "windows-sys 0.61.1", +] + +[[package]] name = "serde" version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2648,7 +2695,7 @@ dependencies = [ "getrandom 0.3.1", "once_cell", "rustix 1.1.2", - "windows-sys 0.59.0", + "windows-sys 0.61.1", ] [[package]] @@ -2662,7 +2709,7 @@ dependencies = [ "parking_lot", "rustix 1.1.2", "signal-hook", - "windows-sys 0.59.0", + "windows-sys 0.61.1", ] [[package]] |