| """ |
| @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:defs.bzl", |
| "rust_binary", |
| "rust_library", |
| "rust_proc_macro", |
| "rust_test", |
| ) |
| |
| 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 |
| |
| # 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", |
| data = [], |
| edition = "2018", |
| rustc_flags = [ |
| "--cap-lints=allow", |
| ], |
| tags = [ |
| "cargo-raze", |
| "crate-name=flate2", |
| "manual", |
| ], |
| version = "1.0.22", |
| # buildifier: leave-alone |
| deps = [ |
| "@raze__cfg_if__1_0_0//:cfg_if", |
| "@raze__crc32fast__1_3_2//:crc32fast", |
| "@raze__libc__0_2_107//: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 |