anki/cargo/BUILD.reqwest.rustls.bazel

154 lines
4.4 KiB
Plaintext
Raw Normal View History

"""
@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 "//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 "blocking" with type "example" omitted
# Unsupported target "form" with type "example" omitted
# Unsupported target "json_dynamic" with type "example" omitted
# Unsupported target "json_typed" with type "example" omitted
# Unsupported target "simple" with type "example" omitted
# Unsupported target "tor_socks" with type "example" omitted
rust_library(
name = "reqwest",
srcs = glob(["**/*.rs"]),
aliases = {
},
crate_features = [
"__rustls",
"__tls",
"hyper-rustls",
"json",
"mime_guess",
"multipart",
"rustls",
2021-06-18 10:15:41 +02:00
"rustls-native-certs",
"rustls-tls",
2021-06-18 10:15:41 +02:00
"rustls-tls-native-roots",
"rustls-tls-webpki-roots",
"serde_json",
"socks",
"stream",
"tokio-rustls",
"tokio-socks",
"webpki-roots",
],
crate_root = "src/lib.rs",
crate_type = "lib",
2020-12-15 11:28:10 +01:00
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.11.3",
# buildifier: leave-alone
deps = [
"@raze__bytes__1_0_1//:bytes",
"@raze__http__0_2_4//:http",
"@raze__hyper_timeout__0_4_1//:hyper_timeout",
2020-11-03 01:26:27 +01:00
"@raze__mime_guess__2_0_3//:mime_guess",
2021-06-16 08:10:57 +02:00
"@raze__serde__1_0_126//:serde",
2021-03-07 10:04:34 +01:00
"@raze__serde_json__1_0_64//:serde_json",
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
2021-06-16 08:10:57 +02:00
"@raze__url__2_2_2//:url",
] + selects.with_or({
# cfg(not(target_arch = "wasm32"))
(
"@rules_rust//rust/platform:aarch64-apple-ios",
"@rules_rust//rust/platform:aarch64-unknown-linux-gnu",
"@rules_rust//rust/platform:x86_64-apple-darwin",
"@rules_rust//rust/platform:x86_64-apple-ios",
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
2020-11-03 01:26:27 +01:00
"@raze__base64__0_13_0//:base64",
"@raze__encoding_rs__0_8_28//:encoding_rs",
2021-06-16 08:10:57 +02:00
"@raze__futures_core__0_3_15//:futures_core",
"@raze__futures_util__0_3_15//:futures_util",
"@raze__http_body__0_4_2//:http_body",
"@raze__hyper__0_14_9//:hyper",
"@raze__hyper_rustls__0_22_1//:hyper_rustls",
2021-06-16 08:10:57 +02:00
"@raze__ipnet__2_3_1//:ipnet",
"@raze__lazy_static__1_4_0//:lazy_static",
2021-02-03 11:29:48 +01:00
"@raze__log__0_4_14//:log",
"@raze__mime__0_3_16//:mime",
"@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__rustls__0_19_1//:rustls",
2021-06-18 10:15:41 +02:00
"@raze__rustls_native_certs__0_5_0//:rustls_native_certs",
2021-06-25 07:35:25 +02:00
"@raze__tokio__1_7_1//:tokio",
"@raze__tokio_rustls__0_22_0//:tokio_rustls",
"@raze__tokio_socks__0_5_1//:tokio_socks",
"@raze__webpki_roots__0_21_1//:webpki_roots",
],
"//conditions:default": [],
}) + selects.with_or({
# cfg(windows)
(
"@rules_rust//rust/platform:x86_64-pc-windows-msvc",
): [
2020-11-03 01:26:27 +01:00
"@raze__winreg__0_7_0//:winreg",
],
"//conditions:default": [],
}),
)
# Unsupported target "badssl" with type "test" omitted
# Unsupported target "blocking" with type "test" omitted
# Unsupported target "brotli" with type "test" omitted
# Unsupported target "client" with type "test" omitted
# Unsupported target "cookie" with type "test" omitted
# Unsupported target "gzip" with type "test" omitted
# Unsupported target "multipart" with type "test" omitted
# Unsupported target "proxy" with type "test" omitted
# Unsupported target "redirect" with type "test" omitted
# Unsupported target "timeouts" with type "test" omitted
# Unsupported target "wasm_simple" with type "test" omitted