mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 16:32:54 +01:00
16a151ae19
GitOrigin-RevId: 55a38effd769ab15a3e0893cac84754ffb1de5a0
117 lines
3.1 KiB
Plaintext
117 lines
3.1 KiB
Plaintext
"""
|
|
@generated
|
|
cargo-raze crate build file.
|
|
|
|
DO NOT EDIT! Replaced on runs of cargo-raze
|
|
"""
|
|
|
|
# buildifier: disable=load
|
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
|
|
|
# buildifier: disable=load
|
|
load(
|
|
"@rules_rust//rust:rust.bzl",
|
|
"rust_binary",
|
|
"rust_library",
|
|
"rust_test",
|
|
)
|
|
|
|
package(default_visibility = [
|
|
# Public for visibility by "@raze__crate__version//" targets.
|
|
#
|
|
# Prefer access through "//rules/rust", which limits external
|
|
# visibility to explicit Cargo.toml dependencies.
|
|
"//visibility:public",
|
|
])
|
|
|
|
licenses([
|
|
"notice", # MIT from expression "MIT OR Apache-2.0"
|
|
])
|
|
|
|
# Generated Targets
|
|
|
|
# Unsupported target "compress_file" with type "example" omitted
|
|
|
|
# Unsupported target "deflatedecoder-bufread" with type "example" omitted
|
|
|
|
# Unsupported target "deflatedecoder-read" with type "example" omitted
|
|
|
|
# Unsupported target "deflatedecoder-write" with type "example" omitted
|
|
|
|
# Unsupported target "deflateencoder-bufread" with type "example" omitted
|
|
|
|
# Unsupported target "deflateencoder-read" with type "example" omitted
|
|
|
|
# Unsupported target "deflateencoder-write" with type "example" omitted
|
|
|
|
# Unsupported target "gzbuilder" with type "example" omitted
|
|
|
|
# Unsupported target "gzdecoder-bufread" with type "example" omitted
|
|
|
|
# Unsupported target "gzdecoder-read" with type "example" omitted
|
|
|
|
# Unsupported target "gzdecoder-write" with type "example" omitted
|
|
|
|
# Unsupported target "gzencoder-bufread" with type "example" omitted
|
|
|
|
# Unsupported target "gzencoder-read" with type "example" omitted
|
|
|
|
# Unsupported target "gzencoder-write" with type "example" omitted
|
|
|
|
# Unsupported target "gzmultidecoder-bufread" with type "example" omitted
|
|
|
|
# Unsupported target "gzmultidecoder-read" with type "example" omitted
|
|
|
|
# Unsupported target "zlibdecoder-bufread" with type "example" omitted
|
|
|
|
# Unsupported target "zlibdecoder-read" with type "example" omitted
|
|
|
|
# Unsupported target "zlibdecoder-write" with type "example" omitted
|
|
|
|
# Unsupported target "zlibencoder-bufread" with type "example" omitted
|
|
|
|
# Unsupported target "zlibencoder-read" with type "example" omitted
|
|
|
|
# Unsupported target "zlibencoder-write" with type "example" omitted
|
|
|
|
rust_library(
|
|
name = "flate2",
|
|
srcs = glob(["**/*.rs"]),
|
|
crate_features = [
|
|
"default",
|
|
"miniz_oxide",
|
|
"rust_backend",
|
|
],
|
|
crate_root = "src/lib.rs",
|
|
crate_type = "lib",
|
|
data = [],
|
|
edition = "2018",
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"manual",
|
|
],
|
|
version = "1.0.20",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
"@raze__cfg_if__1_0_0//:cfg_if",
|
|
"@raze__crc32fast__1_2_1//:crc32fast",
|
|
"@raze__libc__0_2_91//:libc",
|
|
"@raze__miniz_oxide__0_4_4//:miniz_oxide",
|
|
],
|
|
)
|
|
|
|
# Unsupported target "async-reader" with type "test" omitted
|
|
|
|
# Unsupported target "early-flush" with type "test" omitted
|
|
|
|
# Unsupported target "empty-read" with type "test" omitted
|
|
|
|
# Unsupported target "gunzip" with type "test" omitted
|
|
|
|
# Unsupported target "tokio" with type "test" omitted
|
|
|
|
# Unsupported target "zero-write" with type "test" omitted
|