@@ -10,9 +10,10 @@ load("@bazel_skylib//lib:selects.bzl", "selects")
1010
1111# buildifier: disable=load
1212load(
13- "@rules_rust//rust:rust .bzl",
13+ "@rules_rust//rust:defs .bzl",
1414 "rust_binary",
1515 "rust_library",
16+ "rust_proc_macro",
1617 "rust_test",
1718)
1819
@@ -53,39 +54,58 @@ cargo_build_script(
5354 "cargo-raze",
5455 "manual",
5556 ],
56- version = "0.7.4 ",
57+ version = "0.7.6 ",
5758 visibility = ["//visibility:private"],
5859 deps = [
59- "@raze__version_check__0_9_3 //:version_check",
60+ "@raze__version_check__0_9_4 //:version_check",
6061 ] + selects.with_or({
6162 # cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))
6263 (
64+ "@rules_rust//rust/platform:i686-apple-darwin",
65+ "@rules_rust//rust/platform:i686-pc-windows-msvc",
66+ "@rules_rust//rust/platform:i686-unknown-linux-gnu",
67+ "@rules_rust//rust/platform:x86_64-apple-darwin",
68+ "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
69+ "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
6370 "@rules_rust//rust/platform:aarch64-apple-darwin",
6471 "@rules_rust//rust/platform:aarch64-apple-ios",
6572 "@rules_rust//rust/platform:aarch64-linux-android",
6673 "@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
6774 "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
68- "@rules_rust//rust/platform:i686-apple-darwin",
6975 "@rules_rust//rust/platform:i686-linux-android",
70- "@rules_rust//rust/platform:i686-pc-windows-msvc",
7176 "@rules_rust//rust/platform:i686-unknown-freebsd",
72- "@rules_rust//rust/platform:i686-unknown-linux-gnu",
7377 "@rules_rust//rust/platform:powerpc-unknown-linux-gnu",
7478 "@rules_rust//rust/platform:s390x-unknown-linux-gnu",
7579 "@rules_rust//rust/platform:wasm32-wasi",
76- "@rules_rust//rust/platform:x86_64-apple-darwin",
7780 "@rules_rust//rust/platform:x86_64-apple-ios",
7881 "@rules_rust//rust/platform:x86_64-linux-android",
79- "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
8082 "@rules_rust//rust/platform:x86_64-unknown-freebsd",
81- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
8283 ): [
8384 ],
8485 "//conditions:default": [],
8586 }) + selects.with_or({
86- # cfg(not(any(target_os = "linux ", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi ")))
87+ # cfg(not(all(target_arch = "arm ", target_os = "none ")))
8788 (
89+ "@rules_rust//rust/platform:i686-apple-darwin",
90+ "@rules_rust//rust/platform:i686-pc-windows-msvc",
91+ "@rules_rust//rust/platform:i686-unknown-linux-gnu",
92+ "@rules_rust//rust/platform:x86_64-apple-darwin",
93+ "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
94+ "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
95+ "@rules_rust//rust/platform:aarch64-apple-darwin",
96+ "@rules_rust//rust/platform:aarch64-apple-ios",
97+ "@rules_rust//rust/platform:aarch64-linux-android",
98+ "@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
99+ "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
100+ "@rules_rust//rust/platform:i686-linux-android",
101+ "@rules_rust//rust/platform:i686-unknown-freebsd",
102+ "@rules_rust//rust/platform:powerpc-unknown-linux-gnu",
103+ "@rules_rust//rust/platform:s390x-unknown-linux-gnu",
88104 "@rules_rust//rust/platform:wasm32-unknown-unknown",
105+ "@rules_rust//rust/platform:wasm32-wasi",
106+ "@rules_rust//rust/platform:x86_64-apple-ios",
107+ "@rules_rust//rust/platform:x86_64-linux-android",
108+ "@rules_rust//rust/platform:x86_64-unknown-freebsd",
89109 ): [
90110 ],
91111 "//conditions:default": [],
@@ -104,52 +124,71 @@ rust_library(
104124 crate_features = [
105125 ],
106126 crate_root = "src/lib.rs",
107- crate_type = "lib",
108127 data = [],
109128 edition = "2018",
110129 rustc_flags = [
111130 "--cap-lints=allow",
112131 ],
113132 tags = [
114133 "cargo-raze",
134+ "crate-name=ahash",
115135 "manual",
116136 ],
117- version = "0.7.4 ",
137+ version = "0.7.6 ",
118138 # buildifier: leave-alone
119139 deps = [
120140 ":ahash_build_script",
121141 ] + selects.with_or({
122142 # cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))
123143 (
144+ "@rules_rust//rust/platform:i686-apple-darwin",
145+ "@rules_rust//rust/platform:i686-pc-windows-msvc",
146+ "@rules_rust//rust/platform:i686-unknown-linux-gnu",
147+ "@rules_rust//rust/platform:x86_64-apple-darwin",
148+ "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
149+ "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
124150 "@rules_rust//rust/platform:aarch64-apple-darwin",
125151 "@rules_rust//rust/platform:aarch64-apple-ios",
126152 "@rules_rust//rust/platform:aarch64-linux-android",
127153 "@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
128154 "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
129- "@rules_rust//rust/platform:i686-apple-darwin",
130155 "@rules_rust//rust/platform:i686-linux-android",
131- "@rules_rust//rust/platform:i686-pc-windows-msvc",
132156 "@rules_rust//rust/platform:i686-unknown-freebsd",
133- "@rules_rust//rust/platform:i686-unknown-linux-gnu",
134157 "@rules_rust//rust/platform:powerpc-unknown-linux-gnu",
135158 "@rules_rust//rust/platform:s390x-unknown-linux-gnu",
136159 "@rules_rust//rust/platform:wasm32-wasi",
137- "@rules_rust//rust/platform:x86_64-apple-darwin",
138160 "@rules_rust//rust/platform:x86_64-apple-ios",
139161 "@rules_rust//rust/platform:x86_64-linux-android",
140- "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
141162 "@rules_rust//rust/platform:x86_64-unknown-freebsd",
142- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
143163 ): [
144- "@raze__getrandom__0_2_3//:getrandom",
145- "@raze__once_cell__1_8_0//:once_cell",
164+ "@raze__getrandom__0_2_4//:getrandom",
146165 ],
147166 "//conditions:default": [],
148167 }) + selects.with_or({
149- # cfg(not(any(target_os = "linux ", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi ")))
168+ # cfg(not(all(target_arch = "arm ", target_os = "none ")))
150169 (
170+ "@rules_rust//rust/platform:i686-apple-darwin",
171+ "@rules_rust//rust/platform:i686-pc-windows-msvc",
172+ "@rules_rust//rust/platform:i686-unknown-linux-gnu",
173+ "@rules_rust//rust/platform:x86_64-apple-darwin",
174+ "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
175+ "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
176+ "@rules_rust//rust/platform:aarch64-apple-darwin",
177+ "@rules_rust//rust/platform:aarch64-apple-ios",
178+ "@rules_rust//rust/platform:aarch64-linux-android",
179+ "@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
180+ "@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
181+ "@rules_rust//rust/platform:i686-linux-android",
182+ "@rules_rust//rust/platform:i686-unknown-freebsd",
183+ "@rules_rust//rust/platform:powerpc-unknown-linux-gnu",
184+ "@rules_rust//rust/platform:s390x-unknown-linux-gnu",
151185 "@rules_rust//rust/platform:wasm32-unknown-unknown",
186+ "@rules_rust//rust/platform:wasm32-wasi",
187+ "@rules_rust//rust/platform:x86_64-apple-ios",
188+ "@rules_rust//rust/platform:x86_64-linux-android",
189+ "@rules_rust//rust/platform:x86_64-unknown-freebsd",
152190 ): [
191+ "@raze__once_cell__1_9_0//:once_cell",
153192 ],
154193 "//conditions:default": [],
155194 }),
0 commit comments