mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-24 17:37:34 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
98 lines
2.5 KiB
Plaintext
98 lines
2.5 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
|
|
|
|
# Unsupported target "decode" with type "bench" omitted
|
|
|
|
rust_library(
|
|
name = "tonic",
|
|
srcs = glob(["**/*.rs"]),
|
|
aliases = {
|
|
"@raze__prost__0_9_0//:prost": "prost1",
|
|
},
|
|
crate_features = [
|
|
"async-trait",
|
|
"codegen",
|
|
"default",
|
|
"h2",
|
|
"hyper",
|
|
"hyper-timeout",
|
|
"prost",
|
|
"prost-derive",
|
|
"prost1",
|
|
"tokio",
|
|
"tower",
|
|
"tracing-futures",
|
|
"transport",
|
|
],
|
|
crate_root = "src/lib.rs",
|
|
data = [],
|
|
edition = "2018",
|
|
proc_macro_deps = [
|
|
"@raze__async_trait__0_1_52//:async_trait",
|
|
"@raze__prost_derive__0_9_0//:prost_derive",
|
|
],
|
|
rustc_flags = [
|
|
"--cap-lints=allow",
|
|
],
|
|
tags = [
|
|
"cargo-raze",
|
|
"crate-name=tonic",
|
|
"manual",
|
|
],
|
|
version = "0.6.2",
|
|
# buildifier: leave-alone
|
|
deps = [
|
|
"@raze__async_stream__0_3_3//:async_stream",
|
|
"@raze__base64__0_13_0//:base64",
|
|
"@raze__bytes__1_1_0//:bytes",
|
|
"@raze__futures_core__0_3_21//:futures_core",
|
|
"@raze__futures_util__0_3_21//:futures_util",
|
|
"@raze__h2__0_3_12//:h2",
|
|
"@raze__http__0_2_6//:http",
|
|
"@raze__http_body__0_4_4//:http_body",
|
|
"@raze__hyper__0_14_17//:hyper",
|
|
"@raze__hyper_timeout__0_4_1//:hyper_timeout",
|
|
"@raze__percent_encoding__2_1_0//:percent_encoding",
|
|
"@raze__pin_project__1_0_10//:pin_project",
|
|
"@raze__prost__0_9_0//:prost",
|
|
"@raze__tokio__1_17_0//:tokio",
|
|
"@raze__tokio_stream__0_1_8//:tokio_stream",
|
|
"@raze__tokio_util__0_6_9//:tokio_util",
|
|
"@raze__tower__0_4_12//:tower",
|
|
"@raze__tower_layer__0_3_1//:tower_layer",
|
|
"@raze__tower_service__0_3_1//:tower_service",
|
|
"@raze__tracing__0_1_32//:tracing",
|
|
"@raze__tracing_futures__0_2_5//:tracing_futures",
|
|
],
|
|
)
|