diff --git a/Cargo.lock b/Cargo.lock index ce9e6d92c79c3..d5efe636fbf7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,6 +82,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "allocator-api2" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" + [[package]] name = "amq-protocol" version = "7.0.1" @@ -3612,15 +3618,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" dependencies = [ "ahash 0.8.2", + "allocator-api2", ] [[package]] name = "hashlink" -version = "0.8.2" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa" +checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" dependencies = [ - "hashbrown 0.13.2", + "hashbrown 0.14.0", "serde", ] diff --git a/vdev/Cargo.toml b/vdev/Cargo.toml index 23ab8ab123fda..f1dfc95c68ad5 100644 --- a/vdev/Cargo.toml +++ b/vdev/Cargo.toml @@ -20,7 +20,7 @@ directories = "5.0.1" # remove this when stabilized https://doc.rust-lang.org/stable/std/path/fn.absolute.html dunce = "1.0.4" glob = { version = "0.3.1", default-features = false } -hashlink = { version = "0.8.2", features = ["serde_impl"] } +hashlink = { version = "0.8.4", features = ["serde_impl"] } hex = "0.4.3" indicatif = { version = "0.17.5", features = ["improved_unicode"] } itertools = "0.10.5"