blob: b0b720833ac93fff0c0a427324f7f5a6937a51cb [file] [log] [blame]
"""
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
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"
])
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_library",
"rust_binary",
"rust_test",
)
# Unsupported target "async_read" with type "test" omitted
# Unsupported target "length_delimited" with type "test" omitted
rust_library(
name = "tokio_io",
crate_root = "src/lib.rs",
crate_type = "lib",
edition = "2015",
srcs = glob(["**/*.rs"]),
deps = [
"@raze__bytes__0_4_12//:bytes",
"@raze__futures__0_1_29//:futures",
"@raze__log__0_4_6//:log",
],
rustc_flags = [
"--cap-lints=allow",
],
version = "0.1.13",
crate_features = [
],
)