Skip to content

Commit

Permalink
Update hashbrown to v0.11.1. (#96)
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Sikora <piotrsikora@google.com>
  • Loading branch information
PiotrSikora authored Mar 23, 2021
1 parent 5254f07 commit 1534ef2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bazel/cargo/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ alias(

alias(
name = "hashbrown",
actual = "@raze__hashbrown__0_11_0//:hashbrown",
actual = "@raze__hashbrown__0_11_1//:hashbrown",
tags = [
"cargo-raze",
"manual",
Expand Down
4 changes: 2 additions & 2 deletions bazel/cargo/Cargo.raze.lock
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ dependencies = [

[[package]]
name = "hashbrown"
version = "0.11.0"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "362385356d610bd1e5a408ddf8d022041774b683f345a1d2cfcb4f60f8ae2db5"
checksum = "a3de7a9a685bb301f5cb29587f13833270c59e7d2c6f457a66372996afad4504"
dependencies = [
"ahash",
]
Expand Down
10 changes: 5 additions & 5 deletions bazel/cargo/crates.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ def raze_fetch_remote_crates():

maybe(
http_archive,
name = "raze__hashbrown__0_11_0",
url = "https://crates.io/api/v1/crates/hashbrown/0.11.0/download",
name = "raze__hashbrown__0_11_1",
url = "https://crates.io/api/v1/crates/hashbrown/0.11.1/download",
type = "tar.gz",
sha256 = "362385356d610bd1e5a408ddf8d022041774b683f345a1d2cfcb4f60f8ae2db5",
strip_prefix = "hashbrown-0.11.0",
build_file = Label("//bazel/cargo/remote:BUILD.hashbrown-0.11.0.bazel"),
sha256 = "a3de7a9a685bb301f5cb29587f13833270c59e7d2c6f457a66372996afad4504",
strip_prefix = "hashbrown-0.11.1",
build_file = Label("//bazel/cargo/remote:BUILD.hashbrown-0.11.1.bazel"),
)

maybe(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ rust_library(
"cargo-raze",
"manual",
],
version = "0.11.0",
version = "0.11.1",
# buildifier: leave-alone
deps = [
"@raze__ahash__0_7_2//:ahash",
Expand Down

0 comments on commit 1534ef2

Please sign in to comment.