blob: 028d602bec8e4506bf84df1a7a1fbf91cb326408 [file] [log] [blame]
"""
@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:defs.bzl",
"rust_binary",
"rust_library",
"rust_proc_macro",
"rust_test",
)
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//third_party/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 "mod" with type "bench" omitted
rust_library(
name = "sha2",
srcs = glob(["**/*.rs"]),
aliases = {
},
crate_features = [
"default",
"std",
],
crate_root = "src/lib.rs",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.10.1",
# buildifier: leave-alone
deps = [
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__digest__0_10_1//:digest",
] + selects.with_or({
# cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))
(
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
"@raze__cpufeatures__0_2_1//:cpufeatures",
],
"//conditions:default": [],
}),
)
# Unsupported target "mod" with type "test" omitted