blob: a113809ac468fd8722a043fb5663ae23eb363955 [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_binary",
"rust_library",
"rust_test",
)
# Unsupported target "stream" with type "test" omitted
rust_library(
name = "tokio_uds",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "lib",
rustc_flags = [
"--cap-lints=allow",
],
version = "0.2.3",
deps = [
"@raze__bytes__0_4_10//:bytes",
"@raze__futures__0_1_25//:futures",
"@raze__iovec__0_1_2//:iovec",
"@raze__libc__0_2_43//:libc",
"@raze__log__0_4_6//:log",
"@raze__mio__0_6_16//:mio",
"@raze__mio_uds__0_6_7//:mio_uds",
"@raze__tokio_io__0_1_10//:tokio_io",
"@raze__tokio_reactor__0_1_6//:tokio_reactor",
],
)