Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--Cargo.lock36
-rw-r--r--helix-event/Cargo.toml2
2 files changed, 31 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 51472863..51c81741 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -138,10 +138,11 @@ checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
[[package]]
name = "cc"
-version = "1.2.34"
+version = "1.2.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc"
+checksum = "590f9024a68a8c40351881787f1934dc11afd69090f5edb6831464694d836ea3"
dependencies = [
+ "find-msvc-tools",
"shlex",
]
@@ -399,6 +400,12 @@ dependencies = [
]
[[package]]
+name = "find-msvc-tools"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e178e4fba8a2726903f6ba98a6d221e76f9c12c650d5dc0e6afdc50677b49650"
+
+[[package]]
name = "flate2"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -422,6 +429,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
[[package]]
+name = "foldhash"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
+
+[[package]]
name = "form_urlencoded"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1327,7 +1340,18 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
dependencies = [
"allocator-api2",
"equivalent",
- "foldhash",
+ "foldhash 0.1.5",
+]
+
+[[package]]
+name = "hashbrown"
+version = "0.16.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
+dependencies = [
+ "allocator-api2",
+ "equivalent",
+ "foldhash 0.2.0",
]
[[package]]
@@ -1349,7 +1373,7 @@ dependencies = [
"bitflags",
"chrono",
"encoding_rs",
- "foldhash",
+ "foldhash 0.1.5",
"globset",
"helix-loader",
"helix-parsec",
@@ -1402,9 +1426,9 @@ name = "helix-event"
version = "25.7.1"
dependencies = [
"anyhow",
- "foldhash",
+ "foldhash 0.1.5",
"futures-executor",
- "hashbrown 0.15.5",
+ "hashbrown 0.16.0",
"log",
"once_cell",
"parking_lot",
diff --git a/helix-event/Cargo.toml b/helix-event/Cargo.toml
index 41f3b483..ddf30b7d 100644
--- a/helix-event/Cargo.toml
+++ b/helix-event/Cargo.toml
@@ -13,7 +13,7 @@ homepage.workspace = true
[dependencies]
foldhash.workspace = true
-hashbrown = "0.15"
+hashbrown = "0.16"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "parking_lot", "macros"] }
# the event registry is essentially read only but must be an rwlock so we can
# setup new events on initialization, hardware-lock-elision hugely benefits this case