Skip to content

Commit 44c5a3c

Browse files
authored
Update Bazel dependencies. (#249)
Signed-off-by: Piotr Sikora <[email protected]>
1 parent 5cc365e commit 44c5a3c

15 files changed

+711
-92
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
When updating dependencies, you need to regenerate Bazel `BUILD` files to match updated `Cargo.toml`:
3434

3535
```sh
36-
bazel run //bazel/cargo:crates_vendor -- --repin
36+
bazel run //bazel/cargo:crates_vendor -- --repin all
3737
```

bazel/cargo/Cargo.Bazel.lock

Lines changed: 66 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,21 @@ version = 3
44

55
[[package]]
66
name = "ahash"
7-
version = "0.8.3"
7+
version = "0.8.11"
88
source = "registry+https://github.com/rust-lang/crates.io-index"
9-
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
9+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
1010
dependencies = [
1111
"cfg-if",
1212
"once_cell",
1313
"version_check",
14+
"zerocopy",
1415
]
1516

1617
[[package]]
1718
name = "allocator-api2"
18-
version = "0.2.14"
19+
version = "0.2.18"
1920
source = "registry+https://github.com/rust-lang/crates.io-index"
20-
checksum = "c4f263788a35611fba42eb41ff811c5d0360c58b97402570312a350736e2542e"
21+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
2122

2223
[[package]]
2324
name = "cfg-if"
@@ -27,25 +28,34 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2728

2829
[[package]]
2930
name = "hashbrown"
30-
version = "0.14.0"
31+
version = "0.14.5"
3132
source = "registry+https://github.com/rust-lang/crates.io-index"
32-
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
33+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
3334
dependencies = [
3435
"ahash",
3536
"allocator-api2",
3637
]
3738

3839
[[package]]
3940
name = "log"
40-
version = "0.4.18"
41+
version = "0.4.22"
4142
source = "registry+https://github.com/rust-lang/crates.io-index"
42-
checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de"
43+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
4344

4445
[[package]]
4546
name = "once_cell"
46-
version = "1.18.0"
47+
version = "1.19.0"
4748
source = "registry+https://github.com/rust-lang/crates.io-index"
48-
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
49+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
50+
51+
[[package]]
52+
name = "proc-macro2"
53+
version = "1.0.86"
54+
source = "registry+https://github.com/rust-lang/crates.io-index"
55+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
56+
dependencies = [
57+
"unicode-ident",
58+
]
4959

5060
[[package]]
5161
name = "proxy-wasm"
@@ -55,8 +65,54 @@ dependencies = [
5565
"log",
5666
]
5767

68+
[[package]]
69+
name = "quote"
70+
version = "1.0.36"
71+
source = "registry+https://github.com/rust-lang/crates.io-index"
72+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
73+
dependencies = [
74+
"proc-macro2",
75+
]
76+
77+
[[package]]
78+
name = "syn"
79+
version = "2.0.71"
80+
source = "registry+https://github.com/rust-lang/crates.io-index"
81+
checksum = "b146dcf730474b4bcd16c311627b31ede9ab149045db4d6088b3becaea046462"
82+
dependencies = [
83+
"proc-macro2",
84+
"quote",
85+
"unicode-ident",
86+
]
87+
88+
[[package]]
89+
name = "unicode-ident"
90+
version = "1.0.12"
91+
source = "registry+https://github.com/rust-lang/crates.io-index"
92+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
93+
5894
[[package]]
5995
name = "version_check"
6096
version = "0.9.4"
6197
source = "registry+https://github.com/rust-lang/crates.io-index"
6298
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
99+
100+
[[package]]
101+
name = "zerocopy"
102+
version = "0.7.35"
103+
source = "registry+https://github.com/rust-lang/crates.io-index"
104+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
105+
dependencies = [
106+
"zerocopy-derive",
107+
]
108+
109+
[[package]]
110+
name = "zerocopy-derive"
111+
version = "0.7.35"
112+
source = "registry+https://github.com/rust-lang/crates.io-index"
113+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
114+
dependencies = [
115+
"proc-macro2",
116+
"quote",
117+
"syn",
118+
]

bazel/cargo/remote/BUILD.ahash-0.8.3.bazel renamed to bazel/cargo/remote/BUILD.ahash-0.8.11.bazel

Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -78,106 +78,107 @@ rust_library(
7878
"@rules_rust//rust/platform:x86_64-unknown-none": [],
7979
"//conditions:default": ["@platforms//:incompatible"],
8080
}),
81-
version = "0.8.3",
81+
version = "0.8.11",
8282
deps = [
83-
"@crates_vendor__ahash-0.8.3//:build_script_build",
83+
"@crates_vendor__ahash-0.8.11//:build_script_build",
8484
"@crates_vendor__cfg-if-1.0.0//:cfg_if",
85+
"@crates_vendor__zerocopy-0.7.35//:zerocopy",
8586
] + select({
8687
"@rules_rust//rust/platform:aarch64-apple-darwin": [
87-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
88+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
8889
],
8990
"@rules_rust//rust/platform:aarch64-apple-ios": [
90-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
91+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
9192
],
9293
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [
93-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
94+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
9495
],
9596
"@rules_rust//rust/platform:aarch64-fuchsia": [
96-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
97+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
9798
],
9899
"@rules_rust//rust/platform:aarch64-linux-android": [
99-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
100+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
100101
],
101102
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [
102-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
103+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
103104
],
104105
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [
105-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
106+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
106107
],
107108
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [
108-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
109+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
109110
],
110111
"@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [
111-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
112+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
112113
],
113114
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [
114-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
115+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
115116
],
116117
"@rules_rust//rust/platform:armv7-linux-androideabi": [
117-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
118+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
118119
],
119120
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [
120-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
121+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
121122
],
122123
"@rules_rust//rust/platform:i686-apple-darwin": [
123-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
124+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
124125
],
125126
"@rules_rust//rust/platform:i686-linux-android": [
126-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
127+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
127128
],
128129
"@rules_rust//rust/platform:i686-pc-windows-msvc": [
129-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
130+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
130131
],
131132
"@rules_rust//rust/platform:i686-unknown-freebsd": [
132-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
133+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
133134
],
134135
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [
135-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
136+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
136137
],
137138
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [
138-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
139+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
139140
],
140141
"@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [
141-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
142+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
142143
],
143144
"@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [
144-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
145+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
145146
],
146147
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [
147-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
148+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
148149
],
149150
"@rules_rust//rust/platform:wasm32-unknown-unknown": [
150-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
151+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
151152
],
152153
"@rules_rust//rust/platform:wasm32-wasi": [
153-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
154+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
154155
],
155156
"@rules_rust//rust/platform:x86_64-apple-darwin": [
156-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
157+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
157158
],
158159
"@rules_rust//rust/platform:x86_64-apple-ios": [
159-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
160+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
160161
],
161162
"@rules_rust//rust/platform:x86_64-fuchsia": [
162-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
163+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
163164
],
164165
"@rules_rust//rust/platform:x86_64-linux-android": [
165-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
166+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
166167
],
167168
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [
168-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
169+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
169170
],
170171
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [
171-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
172+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
172173
],
173174
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [
174-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
175+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
175176
],
176177
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [
177-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
178+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
178179
],
179180
"@rules_rust//rust/platform:x86_64-unknown-none": [
180-
"@crates_vendor__once_cell-1.18.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
181+
"@crates_vendor__once_cell-1.19.0//:once_cell", # cfg(not(all(target_arch = "arm", target_os = "none")))
181182
],
182183
"//conditions:default": [],
183184
}),
@@ -215,7 +216,7 @@ cargo_build_script(
215216
"noclippy",
216217
"norustfmt",
217218
],
218-
version = "0.8.3",
219+
version = "0.8.11",
219220
visibility = ["//visibility:private"],
220221
deps = [
221222
"@crates_vendor__version_check-0.9.4//:version_check",

bazel/cargo/remote/BUILD.allocator-api2-0.2.14.bazel renamed to bazel/cargo/remote/BUILD.allocator-api2-0.2.18.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,5 @@ rust_library(
8080
"@rules_rust//rust/platform:x86_64-unknown-none": [],
8181
"//conditions:default": ["@platforms//:incompatible"],
8282
}),
83-
version = "0.2.14",
83+
version = "0.2.18",
8484
)

bazel/cargo/remote/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ filegroup(
3333
# Workspace Member Dependencies
3434
alias(
3535
name = "hashbrown",
36-
actual = "@crates_vendor__hashbrown-0.14.0//:hashbrown",
36+
actual = "@crates_vendor__hashbrown-0.14.5//:hashbrown",
3737
tags = ["manual"],
3838
)
3939

4040
alias(
4141
name = "log",
42-
actual = "@crates_vendor__log-0.4.18//:log",
42+
actual = "@crates_vendor__log-0.4.22//:log",
4343
tags = ["manual"],
4444
)
4545

bazel/cargo/remote/BUILD.hashbrown-0.14.0.bazel renamed to bazel/cargo/remote/BUILD.hashbrown-0.14.5.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ rust_library(
8383
"@rules_rust//rust/platform:x86_64-unknown-none": [],
8484
"//conditions:default": ["@platforms//:incompatible"],
8585
}),
86-
version = "0.14.0",
86+
version = "0.14.5",
8787
deps = [
88-
"@crates_vendor__ahash-0.8.3//:ahash",
89-
"@crates_vendor__allocator-api2-0.2.14//:allocator_api2",
88+
"@crates_vendor__ahash-0.8.11//:ahash",
89+
"@crates_vendor__allocator-api2-0.2.18//:allocator_api2",
9090
],
9191
)
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
###############################################################################
2+
# @generated
3+
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4+
# regenerate this file, run the following:
5+
#
6+
# bazel run @//bazel/cargo:crates_vendor
7+
###############################################################################
8+
9+
load("@rules_rust//rust:defs.bzl", "rust_library")
10+
11+
package(default_visibility = ["//visibility:public"])
12+
13+
rust_library(
14+
name = "log",
15+
srcs = glob(
16+
include = ["**/*.rs"],
17+
allow_empty = True,
18+
),
19+
compile_data = glob(
20+
include = ["**"],
21+
allow_empty = True,
22+
exclude = [
23+
"**/* *",
24+
".tmp_git_root/**/*",
25+
"BUILD",
26+
"BUILD.bazel",
27+
"WORKSPACE",
28+
"WORKSPACE.bazel",
29+
],
30+
),
31+
crate_root = "src/lib.rs",
32+
edition = "2021",
33+
rustc_flags = [
34+
"--cap-lints=allow",
35+
],
36+
tags = [
37+
"cargo-bazel",
38+
"crate-name=log",
39+
"manual",
40+
"noclippy",
41+
"norustfmt",
42+
],
43+
target_compatible_with = select({
44+
"@rules_rust//rust/platform:aarch64-apple-darwin": [],
45+
"@rules_rust//rust/platform:aarch64-apple-ios": [],
46+
"@rules_rust//rust/platform:aarch64-apple-ios-sim": [],
47+
"@rules_rust//rust/platform:aarch64-fuchsia": [],
48+
"@rules_rust//rust/platform:aarch64-linux-android": [],
49+
"@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
50+
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [],
51+
"@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [],
52+
"@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [],
53+
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [],
54+
"@rules_rust//rust/platform:armv7-linux-androideabi": [],
55+
"@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [],
56+
"@rules_rust//rust/platform:i686-apple-darwin": [],
57+
"@rules_rust//rust/platform:i686-linux-android": [],
58+
"@rules_rust//rust/platform:i686-pc-windows-msvc": [],
59+
"@rules_rust//rust/platform:i686-unknown-freebsd": [],
60+
"@rules_rust//rust/platform:i686-unknown-linux-gnu": [],
61+
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [],
62+
"@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [],
63+
"@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [],
64+
"@rules_rust//rust/platform:s390x-unknown-linux-gnu": [],
65+
"@rules_rust//rust/platform:thumbv7em-none-eabi": [],
66+
"@rules_rust//rust/platform:thumbv8m.main-none-eabi": [],
67+
"@rules_rust//rust/platform:wasm32-unknown-unknown": [],
68+
"@rules_rust//rust/platform:wasm32-wasi": [],
69+
"@rules_rust//rust/platform:x86_64-apple-darwin": [],
70+
"@rules_rust//rust/platform:x86_64-apple-ios": [],
71+
"@rules_rust//rust/platform:x86_64-fuchsia": [],
72+
"@rules_rust//rust/platform:x86_64-linux-android": [],
73+
"@rules_rust//rust/platform:x86_64-pc-windows-msvc": [],
74+
"@rules_rust//rust/platform:x86_64-unknown-freebsd": [],
75+
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [],
76+
"@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [],
77+
"@rules_rust//rust/platform:x86_64-unknown-none": [],
78+
"//conditions:default": ["@platforms//:incompatible"],
79+
}),
80+
version = "0.4.22",
81+
)

0 commit comments

Comments
 (0)