2020-11-01 05:26:58 +01:00
|
|
|
"""
|
|
|
|
@generated
|
|
|
|
cargo-raze crate build file.
|
|
|
|
|
|
|
|
DO NOT EDIT! Replaced on runs of cargo-raze
|
|
|
|
"""
|
|
|
|
|
2021-03-27 09:39:02 +01:00
|
|
|
# buildifier: disable=load
|
|
|
|
load("@bazel_skylib//lib:selects.bzl", "selects")
|
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# buildifier: disable=load
|
|
|
|
load(
|
2021-10-26 00:16:40 +02:00
|
|
|
"@rules_rust//rust:defs.bzl",
|
2020-11-01 05:26:58 +01:00
|
|
|
"rust_binary",
|
|
|
|
"rust_library",
|
2021-10-26 00:16:40 +02:00
|
|
|
"rust_proc_macro",
|
2020-11-01 05:26:58 +01:00
|
|
|
"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"
|
|
|
|
])
|
|
|
|
|
2020-11-10 00:47:24 +01:00
|
|
|
# Generated Targets
|
2021-06-16 08:10:57 +02:00
|
|
|
# buildifier: disable=out-of-order-load
|
|
|
|
# buildifier: disable=load-on-top
|
|
|
|
load(
|
|
|
|
"@rules_rust//cargo:cargo_build_script.bzl",
|
|
|
|
"cargo_build_script",
|
|
|
|
)
|
|
|
|
|
|
|
|
cargo_build_script(
|
|
|
|
name = "futures_util_build_script",
|
|
|
|
srcs = glob(["**/*.rs"]),
|
|
|
|
build_script_env = {
|
|
|
|
},
|
|
|
|
crate_features = [
|
|
|
|
"alloc",
|
|
|
|
"async-await",
|
|
|
|
"async-await-macro",
|
|
|
|
"channel",
|
|
|
|
"default",
|
|
|
|
"futures-channel",
|
|
|
|
"futures-io",
|
|
|
|
"futures-macro",
|
|
|
|
"futures-sink",
|
|
|
|
"io",
|
|
|
|
"memchr",
|
|
|
|
"sink",
|
|
|
|
"slab",
|
|
|
|
"std",
|
|
|
|
],
|
|
|
|
crate_root = "build.rs",
|
|
|
|
data = glob(["**"]),
|
|
|
|
edition = "2018",
|
|
|
|
rustc_flags = [
|
|
|
|
"--cap-lints=allow",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"cargo-raze",
|
|
|
|
"manual",
|
|
|
|
],
|
2021-12-03 11:04:47 +01:00
|
|
|
version = "0.3.18",
|
2021-06-16 08:10:57 +02:00
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
],
|
|
|
|
)
|
2020-11-10 00:47:24 +01:00
|
|
|
|
|
|
|
# Unsupported target "futures_unordered" with type "bench" omitted
|
2020-11-01 05:26:58 +01:00
|
|
|
|
|
|
|
rust_library(
|
|
|
|
name = "futures_util",
|
|
|
|
srcs = glob(["**/*.rs"]),
|
|
|
|
crate_features = [
|
|
|
|
"alloc",
|
|
|
|
"async-await",
|
|
|
|
"async-await-macro",
|
|
|
|
"channel",
|
|
|
|
"default",
|
|
|
|
"futures-channel",
|
|
|
|
"futures-io",
|
|
|
|
"futures-macro",
|
|
|
|
"futures-sink",
|
|
|
|
"io",
|
|
|
|
"memchr",
|
|
|
|
"sink",
|
|
|
|
"slab",
|
|
|
|
"std",
|
|
|
|
],
|
2020-11-10 00:47:24 +01:00
|
|
|
crate_root = "src/lib.rs",
|
2020-12-15 11:28:10 +01:00
|
|
|
data = [],
|
2020-11-10 00:47:24 +01:00
|
|
|
edition = "2018",
|
|
|
|
proc_macro_deps = [
|
2021-12-03 11:04:47 +01:00
|
|
|
"@raze__futures_macro__0_3_18//:futures_macro",
|
2020-11-10 00:47:24 +01:00
|
|
|
],
|
|
|
|
rustc_flags = [
|
|
|
|
"--cap-lints=allow",
|
|
|
|
],
|
|
|
|
tags = [
|
|
|
|
"cargo-raze",
|
2022-01-15 05:33:53 +01:00
|
|
|
"crate-name=futures-util",
|
2020-11-10 00:47:24 +01:00
|
|
|
"manual",
|
|
|
|
],
|
2021-12-03 11:04:47 +01:00
|
|
|
version = "0.3.18",
|
2020-11-10 00:47:24 +01:00
|
|
|
# buildifier: leave-alone
|
|
|
|
deps = [
|
2021-06-16 08:10:57 +02:00
|
|
|
":futures_util_build_script",
|
2021-12-03 11:04:47 +01:00
|
|
|
"@raze__futures_channel__0_3_18//:futures_channel",
|
|
|
|
"@raze__futures_core__0_3_18//:futures_core",
|
|
|
|
"@raze__futures_io__0_3_18//:futures_io",
|
|
|
|
"@raze__futures_sink__0_3_18//:futures_sink",
|
|
|
|
"@raze__futures_task__0_3_18//:futures_task",
|
2021-10-02 12:42:03 +02:00
|
|
|
"@raze__memchr__2_4_1//:memchr",
|
|
|
|
"@raze__pin_project_lite__0_2_7//:pin_project_lite",
|
2020-11-10 00:47:24 +01:00
|
|
|
"@raze__pin_utils__0_1_0//:pin_utils",
|
2021-10-26 00:16:40 +02:00
|
|
|
"@raze__slab__0_4_5//:slab",
|
2020-11-10 00:47:24 +01:00
|
|
|
],
|
2020-11-01 05:26:58 +01:00
|
|
|
)
|