diff --git a/Cargo.toml b/Cargo.toml index d23f2ce8..07c161ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" build = "build.rs" [dependencies] -hashbrown = "0.15" +hashbrown = "0.16" log = "0.4" [profile.release] diff --git a/bazel/cargo/Cargo.Bazel.lock b/bazel/cargo/Cargo.Bazel.lock index 3426df9d..8cfa28e2 100644 --- a/bazel/cargo/Cargo.Bazel.lock +++ b/bazel/cargo/Cargo.Bazel.lock @@ -16,15 +16,15 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "foldhash" -version = "0.1.5" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" [[package]] name = "hashbrown" -version = "0.15.3" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3" +checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" dependencies = [ "allocator-api2", "equivalent", diff --git a/bazel/cargo/remote/BUILD.bazel b/bazel/cargo/remote/BUILD.bazel index f2d36366..dbc94421 100644 --- a/bazel/cargo/remote/BUILD.bazel +++ b/bazel/cargo/remote/BUILD.bazel @@ -32,14 +32,14 @@ filegroup( # Workspace Member Dependencies alias( - name = "hashbrown-0.15.3", - actual = "@crates_vendor__hashbrown-0.15.3//:hashbrown", + name = "hashbrown-0.16.0", + actual = "@crates_vendor__hashbrown-0.16.0//:hashbrown", tags = ["manual"], ) alias( name = "hashbrown", - actual = "@crates_vendor__hashbrown-0.15.3//:hashbrown", + actual = "@crates_vendor__hashbrown-0.16.0//:hashbrown", tags = ["manual"], ) diff --git a/bazel/cargo/remote/BUILD.foldhash-0.1.5.bazel b/bazel/cargo/remote/BUILD.foldhash-0.2.0.bazel similarity index 99% rename from bazel/cargo/remote/BUILD.foldhash-0.1.5.bazel rename to bazel/cargo/remote/BUILD.foldhash-0.2.0.bazel index e23cccc2..e31fe521 100644 --- a/bazel/cargo/remote/BUILD.foldhash-0.1.5.bazel +++ b/bazel/cargo/remote/BUILD.foldhash-0.2.0.bazel @@ -88,5 +88,5 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.1.5", + version = "0.2.0", ) diff --git a/bazel/cargo/remote/BUILD.hashbrown-0.15.3.bazel b/bazel/cargo/remote/BUILD.hashbrown-0.16.0.bazel similarity index 98% rename from bazel/cargo/remote/BUILD.hashbrown-0.15.3.bazel rename to bazel/cargo/remote/BUILD.hashbrown-0.16.0.bazel index 7823f68c..f3d5775d 100644 --- a/bazel/cargo/remote/BUILD.hashbrown-0.15.3.bazel +++ b/bazel/cargo/remote/BUILD.hashbrown-0.16.0.bazel @@ -96,10 +96,10 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "0.15.3", + version = "0.16.0", deps = [ "@crates_vendor__allocator-api2-0.2.21//:allocator_api2", "@crates_vendor__equivalent-1.0.2//:equivalent", - "@crates_vendor__foldhash-0.1.5//:foldhash", + "@crates_vendor__foldhash-0.2.0//:foldhash", ], ) diff --git a/bazel/cargo/remote/defs.bzl b/bazel/cargo/remote/defs.bzl index 80b74d6b..cfdb77be 100644 --- a/bazel/cargo/remote/defs.bzl +++ b/bazel/cargo/remote/defs.bzl @@ -295,7 +295,7 @@ def aliases( _NORMAL_DEPENDENCIES = { "": { _COMMON_CONDITION: { - "hashbrown": Label("@crates_vendor//:hashbrown-0.15.3"), + "hashbrown": Label("@crates_vendor//:hashbrown-0.16.0"), "log": Label("@crates_vendor//:log-0.4.27"), }, }, @@ -427,22 +427,22 @@ def crate_repositories(): maybe( http_archive, - name = "crates_vendor__foldhash-0.1.5", - sha256 = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2", + name = "crates_vendor__foldhash-0.2.0", + sha256 = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb", type = "tar.gz", - urls = ["https://static.crates.io/crates/foldhash/0.1.5/download"], - strip_prefix = "foldhash-0.1.5", - build_file = Label("@proxy_wasm_rust_sdk//bazel/cargo/remote:BUILD.foldhash-0.1.5.bazel"), + urls = ["https://static.crates.io/crates/foldhash/0.2.0/download"], + strip_prefix = "foldhash-0.2.0", + build_file = Label("@proxy_wasm_rust_sdk//bazel/cargo/remote:BUILD.foldhash-0.2.0.bazel"), ) maybe( http_archive, - name = "crates_vendor__hashbrown-0.15.3", - sha256 = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3", + name = "crates_vendor__hashbrown-0.16.0", + sha256 = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d", type = "tar.gz", - urls = ["https://static.crates.io/crates/hashbrown/0.15.3/download"], - strip_prefix = "hashbrown-0.15.3", - build_file = Label("@proxy_wasm_rust_sdk//bazel/cargo/remote:BUILD.hashbrown-0.15.3.bazel"), + urls = ["https://static.crates.io/crates/hashbrown/0.16.0/download"], + strip_prefix = "hashbrown-0.16.0", + build_file = Label("@proxy_wasm_rust_sdk//bazel/cargo/remote:BUILD.hashbrown-0.16.0.bazel"), ) maybe( @@ -456,6 +456,6 @@ def crate_repositories(): ) return [ - struct(repo = "crates_vendor__hashbrown-0.15.3", is_dev_dep = False), + struct(repo = "crates_vendor__hashbrown-0.16.0", is_dev_dep = False), struct(repo = "crates_vendor__log-0.4.27", is_dev_dep = False), ]