Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update hashbrown to v0.11.1. #96

Merged
merged 1 commit into from
Mar 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update hashbrown to v0.11.1.
Signed-off-by: Piotr Sikora <piotrsikora@google.com>
  • Loading branch information
PiotrSikora committed Mar 22, 2021
commit b8f43c27e1b7ad8f2003cdfbad5808bc9ccb612a
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