| """ |
| @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 "//proto/raze", 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 "client_server" with type "bench" omitted |
| |
| # Unsupported target "build-script-build" with type "custom-build" omitted |
| |
| # Unsupported target "client" with type "example" omitted |
| |
| # Unsupported target "server" with type "example" omitted |
| |
| rust_library( |
| name = "httpbis", |
| srcs = glob(["**/*.rs"]), |
| aliases = { |
| }, |
| crate_features = [ |
| ], |
| crate_root = "src/lib.rs", |
| data = [], |
| edition = "2015", |
| rustc_flags = [ |
| "--cap-lints=allow", |
| ], |
| tags = [ |
| "cargo-raze", |
| "manual", |
| ], |
| version = "0.7.0", |
| # buildifier: leave-alone |
| deps = [ |
| "@rules_rust_proto__bytes__0_4_12//:bytes", |
| "@rules_rust_proto__futures__0_1_29//:futures", |
| "@rules_rust_proto__futures_cpupool__0_1_8//:futures_cpupool", |
| "@rules_rust_proto__log__0_4_6//:log", |
| "@rules_rust_proto__net2__0_2_33//:net2", |
| "@rules_rust_proto__tls_api__0_1_22//:tls_api", |
| "@rules_rust_proto__tls_api_stub__0_1_22//:tls_api_stub", |
| "@rules_rust_proto__tokio_core__0_1_17//:tokio_core", |
| "@rules_rust_proto__tokio_io__0_1_13//:tokio_io", |
| "@rules_rust_proto__tokio_timer__0_1_2//:tokio_timer", |
| "@rules_rust_proto__tokio_tls_api__0_1_22//:tokio_tls_api", |
| "@rules_rust_proto__void__1_0_2//:void", |
| ] + selects.with_or({ |
| # cfg(unix) |
| ( |
| "@rules_rust//rust/platform:i686-apple-darwin", |
| "@rules_rust//rust/platform:i686-unknown-linux-gnu", |
| "@rules_rust//rust/platform:x86_64-apple-darwin", |
| "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", |
| "@rules_rust//rust/platform:aarch64-apple-darwin", |
| "@rules_rust//rust/platform:aarch64-apple-ios", |
| "@rules_rust//rust/platform:aarch64-linux-android", |
| "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", |
| "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", |
| "@rules_rust//rust/platform:i686-linux-android", |
| "@rules_rust//rust/platform:i686-unknown-freebsd", |
| "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", |
| "@rules_rust//rust/platform:s390x-unknown-linux-gnu", |
| "@rules_rust//rust/platform:x86_64-apple-ios", |
| "@rules_rust//rust/platform:x86_64-linux-android", |
| "@rules_rust//rust/platform:x86_64-unknown-freebsd", |
| ): [ |
| "@rules_rust_proto__tokio_uds__0_1_7//:tokio_uds", |
| "@rules_rust_proto__unix_socket__0_5_0//:unix_socket", |
| ], |
| "//conditions:default": [], |
| }), |
| ) |