hyperboria/rules/rust/remote/BUILD.tower-http-0.2.5.bazel
the-superpirate dd23846059 - [nexus] Refactoring
- [nexus] Switch bot
  - [bot] Added extra receivers functionality

GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
2022-03-28 17:42:18 +03:00

70 lines
1.6 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: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 "//rules/rust", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT"
])
# Generated Targets
rust_library(
name = "tower_http",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"set-header",
"trace",
"tracing",
],
crate_root = "src/lib.rs",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=tower-http",
"manual",
],
version = "0.2.5",
# buildifier: leave-alone
deps = [
"@raze__bitflags__1_3_2//:bitflags",
"@raze__bytes__1_1_0//:bytes",
"@raze__futures_core__0_3_21//:futures_core",
"@raze__futures_util__0_3_21//:futures_util",
"@raze__http__0_2_6//:http",
"@raze__http_body__0_4_4//:http_body",
"@raze__http_range_header__0_3_0//:http_range_header",
"@raze__pin_project_lite__0_2_8//:pin_project_lite",
"@raze__tower_layer__0_3_1//:tower_layer",
"@raze__tower_service__0_3_1//:tower_service",
"@raze__tracing__0_1_32//:tracing",
],
)