abrasion/third_party/cargo/vendor/png-0.16.8/BUILD.bazel

67 lines
1.5 KiB
Python
Raw Normal View History

2020-04-04 18:00:11 +00:00
"""
2021-01-07 22:48:22 +00:00
@generated
2020-04-04 18:00:11 +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-04-04 18:00:11 +00:00
load(
2021-03-21 22:26:42 +00:00
"@rules_rust//rust:rust.bzl",
2020-04-04 18:00:11 +00:00
"rust_binary",
2021-01-07 22:48:22 +00:00
"rust_library",
2020-04-04 18:00:11 +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([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
2020-04-04 18:00:11 +00:00
# Unsupported target "decoder" with type "bench" omitted
2021-01-07 22:48:22 +00:00
# Unsupported target "pngcheck" with type "example" omitted
# Unsupported target "show" with type "example" omitted
2020-04-04 18:00:11 +00:00
rust_library(
name = "png",
2021-01-07 22:48:22 +00:00
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"deflate",
"png-encoding",
],
2020-04-04 18:00:11 +00:00
crate_root = "src/lib.rs",
crate_type = "lib",
2021-01-07 22:48:22 +00:00
data = [],
2020-04-04 18:00:11 +00:00
edition = "2018",
2021-01-07 22:48:22 +00:00
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
2021-01-07 23:38:16 +00:00
version = "0.16.8",
2021-01-07 22:48:22 +00:00
# buildifier: leave-alone
2020-04-04 18:00:11 +00:00
deps = [
"//third_party/cargo/vendor/bitflags-1.2.1:bitflags",
2021-01-07 23:38:16 +00:00
"//third_party/cargo/vendor/crc32fast-1.2.1:crc32fast",
"//third_party/cargo/vendor/deflate-0.8.6:deflate",
"//third_party/cargo/vendor/miniz_oxide-0.3.7:miniz_oxide",
2020-04-04 18:00:11 +00:00
],
)