diff --git a/Cargo.lock b/Cargo.lock index d85873994..885f6435a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1129,17 +1129,18 @@ dependencies = [ [[package]] name = "cached" -version = "0.56.0" +version = "0.58.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "801927ee168e17809ab8901d9f01f700cd7d8d6a6527997fee44e4b0327a253c" +checksum = "ef24ca32a9f36b1cca4cf431dcbeb2ab29f40a5ccd66eb535280d910d1a0c016" dependencies = [ "ahash 0.8.12", "async-trait", "cached_proc_macro", "cached_proc_macro_types", "futures", - "hashbrown 0.15.5", + "hashbrown 0.16.1", "once_cell", + "parking_lot 0.12.5", "serde", "thiserror 2.0.17", "tokio", @@ -1148,9 +1149,9 @@ dependencies = [ [[package]] name = "cached_proc_macro" -version = "0.25.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9225bdcf4e4a9a4c08bf16607908eb2fbf746828d5e0b5e019726dbf6571f201" +checksum = "8a6717e609bc3fd7e2cf7640a6fb5299d7291a882a379d570aea56e8dd6cf61a" dependencies = [ "darling 0.20.11", "proc-macro2", @@ -3267,6 +3268,12 @@ version = "0.1.5" 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 = "font-types" version = "0.10.1" @@ -4391,7 +4398,7 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ "allocator-api2", "equivalent", - "foldhash", + "foldhash 0.1.5", ] [[package]] @@ -4399,6 +4406,11 @@ name = "hashbrown" version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] [[package]] name = "hashlink" diff --git a/crates/terraphim_automata/Cargo.toml b/crates/terraphim_automata/Cargo.toml index 85c6dfec2..981d825d8 100644 --- a/crates/terraphim_automata/Cargo.toml +++ b/crates/terraphim_automata/Cargo.toml @@ -28,7 +28,7 @@ strsim = "0.11" log = "0.4" wasm-bindgen-futures = "0.4.1" wasm-bindgen = { version = "0.2.51" } -cached = { version = "0.56.0", features = ["proc_macro", "async", "serde", "ahash"] } +cached = { version = "0.58.0", features = ["proc_macro", "async", "serde", "ahash"] } tsify = { version = "0.5", features = ["js"], optional = true } # WASM-specific dependencies diff --git a/crates/terraphim_middleware/Cargo.toml b/crates/terraphim_middleware/Cargo.toml index 390c90221..e603e4f18 100644 --- a/crates/terraphim_middleware/Cargo.toml +++ b/crates/terraphim_middleware/Cargo.toml @@ -22,7 +22,7 @@ terraphim_atomic_client = { path = "../terraphim_atomic_client", features = ["na grepapp_haystack = { path = "../haystack_grepapp", version = "1.0.0" } ahash = { version = "0.8.8", features = ["serde"] } -cached = { version = "0.56.0", features = ["async", "serde", "ahash"] } +cached = { version = "0.58.0", features = ["async", "serde", "ahash"] } log = "0.4" serde = { version = "1.0.149", features = ["derive"] } serde_json = "1.0.110"