mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-12 12:47:46 +01:00
59 lines
1.2 KiB
Plaintext
59 lines
1.2 KiB
Plaintext
|
"""
|
||
|
@generated
|
||
|
cargo-raze crate build file.
|
||
|
|
||
|
DO NOT EDIT! Replaced on runs of cargo-raze
|
||
|
"""
|
||
|
|
||
|
# buildifier: disable=load
|
||
|
load(
|
||
|
"@io_bazel_rules_rust//rust:rust.bzl",
|
||
|
"rust_binary",
|
||
|
"rust_library",
|
||
|
"rust_test",
|
||
|
)
|
||
|
|
||
|
# buildifier: disable=load
|
||
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
||
|
|
||
|
package(default_visibility = [
|
||
|
# Public for visibility by "@raze__crate__version//" targets.
|
||
|
#
|
||
|
# Prefer access through "//rules/rust", which limits external
|
||
|
# visibility to explicit Cargo.toml dependencies.
|
||
|
"//visibility:public",
|
||
|
])
|
||
|
|
||
|
licenses([
|
||
|
"notice", # MIT from expression "MIT"
|
||
|
])
|
||
|
|
||
|
# Generated Targets
|
||
|
|
||
|
rust_library(
|
||
|
name = "blake2b_simd",
|
||
|
srcs = glob(["**/*.rs"]),
|
||
|
crate_features = [
|
||
|
"default",
|
||
|
"std",
|
||
|
],
|
||
|
crate_root = "src/lib.rs",
|
||
|
crate_type = "lib",
|
||
|
data = [],
|
||
|
edition = "2018",
|
||
|
rustc_flags = [
|
||
|
"--cap-lints=allow",
|
||
|
],
|
||
|
tags = [
|
||
|
"cargo-raze",
|
||
|
"manual",
|
||
|
],
|
||
|
version = "0.5.11",
|
||
|
# buildifier: leave-alone
|
||
|
deps = [
|
||
|
"@raze__arrayref__0_3_6//:arrayref",
|
||
|
"@raze__arrayvec__0_5_2//:arrayvec",
|
||
|
"@raze__constant_time_eq__0_1_5//:constant_time_eq",
|
||
|
],
|
||
|
)
|