abrasion/third_party/cargo/vendor/backtrace-0.3.42/BUILD

62 lines
1.6 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,Apache-2.0"
])
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_library",
"rust_binary",
"rust_test",
)
# Unsupported target "accuracy" with type "test" omitted
# Unsupported target "backtrace" with type "example" omitted
rust_library(
name = "backtrace",
crate_root = "src/lib.rs",
crate_type = "lib",
edition = "2018",
srcs = glob(["**/*.rs"]),
deps = [
"//third_party/cargo/vendor/backtrace-sys-0.1.32:backtrace_sys",
"//third_party/cargo/vendor/cfg-if-0.1.10:cfg_if",
"//third_party/cargo/vendor/libc-0.2.66:libc",
"//third_party/cargo/vendor/rustc-demangle-0.1.16:rustc_demangle",
],
rustc_flags = [
"--cap-lints=allow",
],
version = "0.3.42",
crate_features = [
"backtrace-sys",
"dbghelp",
"default",
"dladdr",
"libbacktrace",
"libunwind",
"std",
],
)
# Unsupported target "benchmarks" with type "bench" omitted
# Unsupported target "concurrent-panics" with type "test" omitted
# Unsupported target "long_fn_name" with type "test" omitted
# Unsupported target "raw" with type "example" omitted
# Unsupported target "skip_inner_frames" with type "test" omitted
# Unsupported target "smoke" with type "test" omitted