blob: b0b720833ac93fff0c0a427324f7f5a6937a51cb [file] [log] [blame]
Damien Martin-Guillereze008ebe2018-11-13 19:27:19 +01001"""
2cargo-raze crate build file.
3
4DO NOT EDIT! Replaced on runs of cargo-raze
5"""
6package(default_visibility = [
David Freese8d3cb682020-04-22 01:57:30 -07007 # Public for visibility by "@raze__crate__version//" targets.
8 #
9 # Prefer access through "//proto/raze", which limits external
10 # visibility to explicit Cargo.toml dependencies.
11 "//visibility:public",
Damien Martin-Guillereze008ebe2018-11-13 19:27:19 +010012])
13
14licenses([
David Freese8d3cb682020-04-22 01:57:30 -070015 "notice", # "MIT"
Damien Martin-Guillereze008ebe2018-11-13 19:27:19 +010016])
17
18load(
19 "@io_bazel_rules_rust//rust:rust.bzl",
Marcel Hlopkofe9a91e2019-11-04 00:15:38 +010020 "rust_library",
David Freese8d3cb682020-04-22 01:57:30 -070021 "rust_binary",
Damien Martin-Guillereze008ebe2018-11-13 19:27:19 +010022 "rust_test",
23)
24
David Freese8d3cb682020-04-22 01:57:30 -070025
Damien Martin-Guillereze008ebe2018-11-13 19:27:19 +010026# Unsupported target "async_read" with type "test" omitted
27# Unsupported target "length_delimited" with type "test" omitted
28
29rust_library(
30 name = "tokio_io",
31 crate_root = "src/lib.rs",
32 crate_type = "lib",
David Freese8d3cb682020-04-22 01:57:30 -070033 edition = "2015",
34 srcs = glob(["**/*.rs"]),
35 deps = [
36 "@raze__bytes__0_4_12//:bytes",
37 "@raze__futures__0_1_29//:futures",
38 "@raze__log__0_4_6//:log",
39 ],
Marcel Hlopkofe9a91e2019-11-04 00:15:38 +010040 rustc_flags = [
41 "--cap-lints=allow",
42 ],
David Freese8d3cb682020-04-22 01:57:30 -070043 version = "0.1.13",
44 crate_features = [
Damien Martin-Guillereze008ebe2018-11-13 19:27:19 +010045 ],
Damien Martin-Guillereze008ebe2018-11-13 19:27:19 +010046)
David Freese8d3cb682020-04-22 01:57:30 -070047