@@ -10,9 +10,10 @@ load("@bazel_skylib//lib:selects.bzl", "selects")
10
10
11
11
# buildifier: disable=load
12
12
load(
13
- "@rules_rust//rust:rust .bzl",
13
+ "@rules_rust//rust:defs .bzl",
14
14
"rust_binary",
15
15
"rust_library",
16
+ "rust_proc_macro",
16
17
"rust_test",
17
18
)
18
19
@@ -53,39 +54,58 @@ cargo_build_script(
53
54
"cargo-raze",
54
55
"manual",
55
56
],
56
- version = "0.7.4 ",
57
+ version = "0.7.6 ",
57
58
visibility = ["//visibility:private"],
58
59
deps = [
59
- "@raze__version_check__0_9_3 //:version_check",
60
+ "@raze__version_check__0_9_4 //:version_check",
60
61
] + selects.with_or({
61
62
# 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"))
62
63
(
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",
63
70
"@rules_rust//rust/platform:aarch64-apple-darwin",
64
71
"@rules_rust//rust/platform:aarch64-apple-ios",
65
72
"@rules_rust//rust/platform:aarch64-linux-android",
66
73
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
67
74
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
68
- "@rules_rust//rust/platform:i686-apple-darwin",
69
75
"@rules_rust//rust/platform:i686-linux-android",
70
- "@rules_rust//rust/platform:i686-pc-windows-msvc",
71
76
"@rules_rust//rust/platform:i686-unknown-freebsd",
72
- "@rules_rust//rust/platform:i686-unknown-linux-gnu",
73
77
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu",
74
78
"@rules_rust//rust/platform:s390x-unknown-linux-gnu",
75
79
"@rules_rust//rust/platform:wasm32-wasi",
76
- "@rules_rust//rust/platform:x86_64-apple-darwin",
77
80
"@rules_rust//rust/platform:x86_64-apple-ios",
78
81
"@rules_rust//rust/platform:x86_64-linux-android",
79
- "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
80
82
"@rules_rust//rust/platform:x86_64-unknown-freebsd",
81
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
82
83
): [
83
84
],
84
85
"//conditions:default": [],
85
86
}) + 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 ")))
87
88
(
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",
88
104
"@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",
89
109
): [
90
110
],
91
111
"//conditions:default": [],
@@ -104,52 +124,71 @@ rust_library(
104
124
crate_features = [
105
125
],
106
126
crate_root = "src/lib.rs",
107
- crate_type = "lib",
108
127
data = [],
109
128
edition = "2018",
110
129
rustc_flags = [
111
130
"--cap-lints=allow",
112
131
],
113
132
tags = [
114
133
"cargo-raze",
134
+ "crate-name=ahash",
115
135
"manual",
116
136
],
117
- version = "0.7.4 ",
137
+ version = "0.7.6 ",
118
138
# buildifier: leave-alone
119
139
deps = [
120
140
":ahash_build_script",
121
141
] + selects.with_or({
122
142
# 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"))
123
143
(
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",
124
150
"@rules_rust//rust/platform:aarch64-apple-darwin",
125
151
"@rules_rust//rust/platform:aarch64-apple-ios",
126
152
"@rules_rust//rust/platform:aarch64-linux-android",
127
153
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
128
154
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi",
129
- "@rules_rust//rust/platform:i686-apple-darwin",
130
155
"@rules_rust//rust/platform:i686-linux-android",
131
- "@rules_rust//rust/platform:i686-pc-windows-msvc",
132
156
"@rules_rust//rust/platform:i686-unknown-freebsd",
133
- "@rules_rust//rust/platform:i686-unknown-linux-gnu",
134
157
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu",
135
158
"@rules_rust//rust/platform:s390x-unknown-linux-gnu",
136
159
"@rules_rust//rust/platform:wasm32-wasi",
137
- "@rules_rust//rust/platform:x86_64-apple-darwin",
138
160
"@rules_rust//rust/platform:x86_64-apple-ios",
139
161
"@rules_rust//rust/platform:x86_64-linux-android",
140
- "@rules_rust//rust/platform:x86_64-pc-windows-msvc",
141
162
"@rules_rust//rust/platform:x86_64-unknown-freebsd",
142
- "@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
143
163
): [
144
- "@raze__getrandom__0_2_3//:getrandom",
145
- "@raze__once_cell__1_8_0//:once_cell",
164
+ "@raze__getrandom__0_2_4//:getrandom",
146
165
],
147
166
"//conditions:default": [],
148
167
}) + 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 ")))
150
169
(
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",
151
185
"@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",
152
190
): [
191
+ "@raze__once_cell__1_9_0//:once_cell",
153
192
],
154
193
"//conditions:default": [],
155
194
}),
0 commit comments