Skip to content

Commit 3bcfeb9

Browse files
authored
Update dependencies. (#98)
Signed-off-by: Piotr Sikora <[email protected]>
1 parent 1534ef2 commit 3bcfeb9

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

bazel/cargo/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ alias(
4141

4242
alias(
4343
name = "hashbrown",
44-
actual = "@raze__hashbrown__0_11_1//:hashbrown",
44+
actual = "@raze__hashbrown__0_11_2//:hashbrown",
4545
tags = [
4646
"cargo-raze",
4747
"manual",

bazel/cargo/Cargo.raze.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,18 @@ dependencies = [
5555

5656
[[package]]
5757
name = "hashbrown"
58-
version = "0.11.1"
58+
version = "0.11.2"
5959
source = "registry+https://github.com/rust-lang/crates.io-index"
60-
checksum = "a3de7a9a685bb301f5cb29587f13833270c59e7d2c6f457a66372996afad4504"
60+
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
6161
dependencies = [
6262
"ahash",
6363
]
6464

6565
[[package]]
6666
name = "libc"
67-
version = "0.2.90"
67+
version = "0.2.91"
6868
source = "registry+https://github.com/rust-lang/crates.io-index"
69-
checksum = "ba4aede83fc3617411dc6993bc8c70919750c1c257c6ca6a502aed6e0e2394ae"
69+
checksum = "8916b1f6ca17130ec6568feccee27c156ad12037880833a3b842a823236502e7"
7070

7171
[[package]]
7272
name = "log"

bazel/cargo/crates.bzl

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,22 @@ def raze_fetch_remote_crates():
6363

6464
maybe(
6565
http_archive,
66-
name = "raze__hashbrown__0_11_1",
67-
url = "https://crates.io/api/v1/crates/hashbrown/0.11.1/download",
66+
name = "raze__hashbrown__0_11_2",
67+
url = "https://crates.io/api/v1/crates/hashbrown/0.11.2/download",
6868
type = "tar.gz",
69-
sha256 = "a3de7a9a685bb301f5cb29587f13833270c59e7d2c6f457a66372996afad4504",
70-
strip_prefix = "hashbrown-0.11.1",
71-
build_file = Label("//bazel/cargo/remote:BUILD.hashbrown-0.11.1.bazel"),
69+
sha256 = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e",
70+
strip_prefix = "hashbrown-0.11.2",
71+
build_file = Label("//bazel/cargo/remote:BUILD.hashbrown-0.11.2.bazel"),
7272
)
7373

7474
maybe(
7575
http_archive,
76-
name = "raze__libc__0_2_90",
77-
url = "https://crates.io/api/v1/crates/libc/0.2.90/download",
76+
name = "raze__libc__0_2_91",
77+
url = "https://crates.io/api/v1/crates/libc/0.2.91/download",
7878
type = "tar.gz",
79-
sha256 = "ba4aede83fc3617411dc6993bc8c70919750c1c257c6ca6a502aed6e0e2394ae",
80-
strip_prefix = "libc-0.2.90",
81-
build_file = Label("//bazel/cargo/remote:BUILD.libc-0.2.90.bazel"),
79+
sha256 = "8916b1f6ca17130ec6568feccee27c156ad12037880833a3b842a823236502e7",
80+
strip_prefix = "libc-0.2.91",
81+
build_file = Label("//bazel/cargo/remote:BUILD.libc-0.2.91.bazel"),
8282
)
8383

8484
maybe(

bazel/cargo/remote/BUILD.chrono-0.4.19.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ rust_library(
6262
version = "0.4.19",
6363
# buildifier: leave-alone
6464
deps = [
65-
"@raze__libc__0_2_90//:libc",
65+
"@raze__libc__0_2_91//:libc",
6666
"@raze__num_integer__0_1_44//:num_integer",
6767
"@raze__num_traits__0_2_14//:num_traits",
6868
"@raze__time__0_1_43//:time",

bazel/cargo/remote/BUILD.getrandom-0.2.2.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ rust_library(
155155
"@rules_rust//rust/platform:x86_64-unknown-freebsd",
156156
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
157157
): [
158-
"@raze__libc__0_2_90//:libc",
158+
"@raze__libc__0_2_91//:libc",
159159
],
160160
"//conditions:default": [],
161161
}),

bazel/cargo/remote/BUILD.hashbrown-0.11.1.bazel renamed to bazel/cargo/remote/BUILD.hashbrown-0.11.2.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ rust_library(
5151
"cargo-raze",
5252
"manual",
5353
],
54-
version = "0.11.1",
54+
version = "0.11.2",
5555
# buildifier: leave-alone
5656
deps = [
5757
"@raze__ahash__0_7_2//:ahash",

bazel/cargo/remote/BUILD.libc-0.2.90.bazel renamed to bazel/cargo/remote/BUILD.libc-0.2.91.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ cargo_build_script(
5555
"cargo-raze",
5656
"manual",
5757
],
58-
version = "0.2.90",
58+
version = "0.2.91",
5959
visibility = ["//visibility:private"],
6060
deps = [
6161
],
@@ -79,7 +79,7 @@ rust_library(
7979
"cargo-raze",
8080
"manual",
8181
],
82-
version = "0.2.90",
82+
version = "0.2.91",
8383
# buildifier: leave-alone
8484
deps = [
8585
":libc_build_script",

bazel/cargo/remote/BUILD.time-0.1.43.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ rust_library(
5151
version = "0.1.43",
5252
# buildifier: leave-alone
5353
deps = [
54-
"@raze__libc__0_2_90//:libc",
54+
"@raze__libc__0_2_91//:libc",
5555
] + selects.with_or({
5656
# cfg(windows)
5757
(

0 commit comments

Comments
 (0)