| """ |
| 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 "basic" with type "bench" omitted |
| # Unsupported target "blocking" with type "bench" omitted |
| # Unsupported target "blocking" with type "test" omitted |
| # Unsupported target "depth" with type "bench" omitted |
| # Unsupported target "depth" with type "example" omitted |
| # Unsupported target "hammer" with type "test" omitted |
| # Unsupported target "hello" with type "example" omitted |
| # Unsupported target "smoke" with type "example" omitted |
| # Unsupported target "threadpool" with type "test" omitted |
| |
| rust_library( |
| name = "tokio_threadpool", |
| srcs = glob(["**/*.rs"]), |
| crate_features = [ |
| ], |
| crate_root = "src/lib.rs", |
| crate_type = "lib", |
| rustc_flags = [ |
| "--cap-lints=allow", |
| ], |
| version = "0.1.8", |
| deps = [ |
| "@raze__crossbeam_deque__0_6_2//:crossbeam_deque", |
| "@raze__crossbeam_utils__0_5_0//:crossbeam_utils", |
| "@raze__futures__0_1_25//:futures", |
| "@raze__log__0_4_6//:log", |
| "@raze__num_cpus__1_8_0//:num_cpus", |
| "@raze__rand__0_5_5//:rand", |
| "@raze__tokio_executor__0_1_5//:tokio_executor", |
| ], |
| ) |