-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Piotr Sikora <piotrsikora@google.com>
- Loading branch information
1 parent
2e27258
commit d2a0169
Showing
8 changed files
with
292 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
""" | ||
@generated | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
|
||
# buildifier: disable=load | ||
load("@bazel_skylib//lib:selects.bzl", "selects") | ||
|
||
# buildifier: disable=load | ||
load( | ||
"@rules_rust//rust:rust.bzl", | ||
"rust_binary", | ||
"rust_library", | ||
"rust_test", | ||
) | ||
|
||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//bazel/cargo", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"notice", # MIT from expression "MIT OR Apache-2.0" | ||
]) | ||
|
||
# Generated Targets | ||
# buildifier: disable=out-of-order-load | ||
# buildifier: disable=load-on-top | ||
load( | ||
"@rules_rust//cargo:cargo_build_script.bzl", | ||
"cargo_build_script", | ||
) | ||
|
||
cargo_build_script( | ||
name = "ahash_build_script", | ||
srcs = glob(["**/*.rs"]), | ||
build_script_env = { | ||
}, | ||
crate_features = [ | ||
], | ||
crate_root = "build.rs", | ||
data = glob(["**"]), | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-raze", | ||
"manual", | ||
], | ||
version = "0.7.2", | ||
visibility = ["//visibility:private"], | ||
deps = [ | ||
"@raze__version_check__0_9_2//:version_check", | ||
] + selects.with_or({ | ||
# 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")) | ||
( | ||
"@rules_rust//rust/platform:aarch64-apple-darwin", | ||
"@rules_rust//rust/platform:aarch64-apple-ios", | ||
"@rules_rust//rust/platform:aarch64-linux-android", | ||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu", | ||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi", | ||
"@rules_rust//rust/platform:i686-apple-darwin", | ||
"@rules_rust//rust/platform:i686-linux-android", | ||
"@rules_rust//rust/platform:i686-pc-windows-msvc", | ||
"@rules_rust//rust/platform:i686-unknown-freebsd", | ||
"@rules_rust//rust/platform:i686-unknown-linux-gnu", | ||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu", | ||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu", | ||
"@rules_rust//rust/platform:wasm32-wasi", | ||
"@rules_rust//rust/platform:x86_64-apple-darwin", | ||
"@rules_rust//rust/platform:x86_64-apple-ios", | ||
"@rules_rust//rust/platform:x86_64-linux-android", | ||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc", | ||
"@rules_rust//rust/platform:x86_64-unknown-freebsd", | ||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu", | ||
): [ | ||
], | ||
"//conditions:default": [], | ||
}) + selects.with_or({ | ||
# 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"))) | ||
( | ||
"@rules_rust//rust/platform:wasm32-unknown-unknown", | ||
): [ | ||
], | ||
"//conditions:default": [], | ||
}), | ||
) | ||
|
||
# Unsupported target "ahash" with type "bench" omitted | ||
|
||
# Unsupported target "map" with type "bench" omitted | ||
|
||
rust_library( | ||
name = "ahash", | ||
srcs = glob(["**/*.rs"]), | ||
aliases = { | ||
}, | ||
crate_features = [ | ||
], | ||
crate_root = "src/lib.rs", | ||
crate_type = "lib", | ||
data = [], | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-raze", | ||
"manual", | ||
], | ||
version = "0.7.2", | ||
# buildifier: leave-alone | ||
deps = [ | ||
":ahash_build_script", | ||
] + selects.with_or({ | ||
# 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")) | ||
( | ||
"@rules_rust//rust/platform:aarch64-apple-darwin", | ||
"@rules_rust//rust/platform:aarch64-apple-ios", | ||
"@rules_rust//rust/platform:aarch64-linux-android", | ||
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu", | ||
"@rules_rust//rust/platform:arm-unknown-linux-gnueabi", | ||
"@rules_rust//rust/platform:i686-apple-darwin", | ||
"@rules_rust//rust/platform:i686-linux-android", | ||
"@rules_rust//rust/platform:i686-pc-windows-msvc", | ||
"@rules_rust//rust/platform:i686-unknown-freebsd", | ||
"@rules_rust//rust/platform:i686-unknown-linux-gnu", | ||
"@rules_rust//rust/platform:powerpc-unknown-linux-gnu", | ||
"@rules_rust//rust/platform:s390x-unknown-linux-gnu", | ||
"@rules_rust//rust/platform:wasm32-wasi", | ||
"@rules_rust//rust/platform:x86_64-apple-darwin", | ||
"@rules_rust//rust/platform:x86_64-apple-ios", | ||
"@rules_rust//rust/platform:x86_64-linux-android", | ||
"@rules_rust//rust/platform:x86_64-pc-windows-msvc", | ||
"@rules_rust//rust/platform:x86_64-unknown-freebsd", | ||
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu", | ||
): [ | ||
"@raze__getrandom__0_2_2//:getrandom", | ||
"@raze__once_cell__1_7_2//:once_cell", | ||
], | ||
"//conditions:default": [], | ||
}) + selects.with_or({ | ||
# 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"))) | ||
( | ||
"@rules_rust//rust/platform:wasm32-unknown-unknown", | ||
): [ | ||
], | ||
"//conditions:default": [], | ||
}), | ||
) | ||
|
||
# Unsupported target "bench" with type "test" omitted | ||
|
||
# Unsupported target "map_tests" with type "test" omitted | ||
|
||
# Unsupported target "nopanic" with type "test" omitted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
""" | ||
@generated | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
|
||
# buildifier: disable=load | ||
load("@bazel_skylib//lib:selects.bzl", "selects") | ||
|
||
# buildifier: disable=load | ||
load( | ||
"@rules_rust//rust:rust.bzl", | ||
"rust_binary", | ||
"rust_library", | ||
"rust_test", | ||
) | ||
|
||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//bazel/cargo", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"notice", # MIT from expression "MIT OR Apache-2.0" | ||
]) | ||
|
||
# Generated Targets | ||
|
||
# Unsupported target "bench" with type "example" omitted | ||
|
||
# Unsupported target "bench_acquire" with type "example" omitted | ||
|
||
# Unsupported target "bench_vs_lazy_static" with type "example" omitted | ||
|
||
# Unsupported target "lazy_static" with type "example" omitted | ||
|
||
# Unsupported target "reentrant_init_deadlocks" with type "example" omitted | ||
|
||
# Unsupported target "regex" with type "example" omitted | ||
|
||
# Unsupported target "test_synchronization" with type "example" omitted | ||
|
||
rust_library( | ||
name = "once_cell", | ||
srcs = glob(["**/*.rs"]), | ||
crate_features = [ | ||
"alloc", | ||
"race", | ||
"unstable", | ||
], | ||
crate_root = "src/lib.rs", | ||
crate_type = "lib", | ||
data = [], | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-raze", | ||
"manual", | ||
], | ||
version = "1.7.2", | ||
# buildifier: leave-alone | ||
deps = [ | ||
], | ||
) | ||
|
||
# Unsupported target "it" with type "test" omitted |
Oops, something went wrong.