abrasion/third_party/cargo/vendor/nix-0.14.1/BUILD

53 lines
1.3 KiB
Python

"""
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
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"
])
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_library",
"rust_binary",
"rust_test",
)
# Unsupported target "build-script-build" with type "custom-build" omitted
rust_library(
name = "nix",
crate_root = "src/lib.rs",
crate_type = "lib",
edition = "2015",
srcs = glob(["**/*.rs"]),
deps = [
"//third_party/cargo/vendor/bitflags-1.2.1:bitflags",
"//third_party/cargo/vendor/cfg-if-0.1.10:cfg_if",
"//third_party/cargo/vendor/libc-0.2.66:libc",
"//third_party/cargo/vendor/void-1.0.2:void",
],
rustc_flags = [
"--cap-lints=allow",
],
version = "0.14.1",
crate_features = [
],
)
# Unsupported target "test" with type "test" omitted
# Unsupported target "test-aio-drop" with type "test" omitted
# Unsupported target "test-lio-listio-resubmit" with type "test" omitted
# Unsupported target "test-mount" with type "test" omitted
# Unsupported target "test-ptymaster-drop" with type "test" omitted