abrasion/third_party/cargo/vendor/kernel32-sys-0.2.2/BUILD.bazel

49 lines
945 B
Python
Raw Normal View History

2020-01-18 23:27:25 +00:00
"""
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([
2020-03-16 23:00:50 +00:00
"notice", # "MIT"
2020-01-18 23:27:25 +00:00
])
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_library",
"rust_binary",
"rust_test",
)
2020-03-16 23:00:50 +00:00
# Unsupported target "build-script-build" with type "custom-build" omitted
alias(
name = "kernel32_sys",
actual = ":kernel32",
)
2020-01-18 23:27:25 +00:00
rust_library(
2020-03-16 23:00:50 +00:00
name = "kernel32",
2020-01-18 23:27:25 +00:00
crate_root = "src/lib.rs",
crate_type = "lib",
edition = "2015",
srcs = glob(["**/*.rs"]),
deps = [
2020-03-16 23:00:50 +00:00
"//third_party/cargo/vendor/winapi-0.2.8:winapi",
2020-01-18 23:27:25 +00:00
],
rustc_flags = [
"--cap-lints=allow",
],
2020-03-16 23:00:50 +00:00
version = "0.2.2",
2020-01-18 23:27:25 +00:00
crate_features = [
],
)