blob: 4322cea7d7071f9ad6cfa08ec70698d44d504f65 [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",
)
rust_library(
name = "tokio_udp",
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",
"@raze__mio__0_6_21//:mio",
"@raze__tokio_codec__0_1_2//:tokio_codec",
"@raze__tokio_io__0_1_13//:tokio_io",
"@raze__tokio_reactor__0_1_12//:tokio_reactor",
],
rustc_flags = [
"--cap-lints=allow",
],
version = "0.1.6",
crate_features = [
],
)
# Unsupported target "udp" with type "test" omitted