abrasion/third_party/cargo/vendor/walkdir-2.3.2/BUILD.bazel

66 lines
1.4 KiB
Python
Raw Normal View History

2020-01-18 23:27:25 +00:00
"""
2021-01-07 22:48:22 +00:00
@generated
2020-01-18 23:27:25 +00:00
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
2021-01-07 22:48:22 +00:00
# buildifier: disable=load
2020-01-18 23:27:25 +00:00
load(
2021-03-21 22:26:42 +00:00
"@rules_rust//rust:rust.bzl",
2020-01-18 23:27:25 +00:00
"rust_binary",
2021-01-07 22:48:22 +00:00
"rust_library",
2020-01-18 23:27:25 +00:00
"rust_test",
)
2021-01-07 22:48:22 +00:00
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([
"unencumbered", # Unlicense from expression "Unlicense OR MIT"
])
2020-01-18 23:27:25 +00:00
2021-01-07 22:48:22 +00:00
# Generated Targets
2020-01-18 23:27:25 +00:00
rust_library(
name = "walkdir",
2021-01-07 22:48:22 +00:00
srcs = glob(["**/*.rs"]),
aliases = {
},
2021-01-07 22:48:22 +00:00
crate_features = [
],
2020-01-18 23:27:25 +00:00
crate_root = "src/lib.rs",
crate_type = "lib",
2021-01-07 22:48:22 +00:00
data = [],
2020-01-18 23:27:25 +00:00
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
2021-01-07 22:48:22 +00:00
tags = [
"cargo-raze",
"manual",
],
2021-04-03 16:13:10 +00:00
version = "2.3.2",
2021-01-07 22:48:22 +00:00
# buildifier: leave-alone
deps = [
"//third_party/cargo/vendor/same-file-1.0.6:same_file",
] + selects.with_or({
# cfg(windows)
(
2021-03-21 22:26:42 +00:00
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
): [
"//third_party/cargo/vendor/winapi-0.3.9:winapi",
"//third_party/cargo/vendor/winapi-util-0.1.5:winapi_util",
],
"//conditions:default": [],
}),
2020-01-18 23:27:25 +00:00
)