""" @generated cargo-raze crate build file. DO NOT EDIT! Replaced on runs of cargo-raze """ # buildifier: disable=load load( "@io_bazel_rules_rust//rust:rust.bzl", "rust_binary", "rust_library", "rust_test", ) # buildifier: disable=load load("@bazel_skylib//lib:selects.bzl", "selects") package(default_visibility = [ # Public for visibility by "@raze__crate__version//" targets. # # Prefer access through "//cargo", which limits external # visibility to explicit Cargo.toml dependencies. "//visibility:public", ]) licenses([ "notice", # MIT from expression "MIT" ]) # Generated Targets # Unsupported target "download-rust-lang" with type "example" omitted # Unsupported target "tls-echo" with type "example" omitted rust_library( name = "tokio_tls", srcs = glob(["**/*.rs"]), aliases = { }, crate_features = [ ], crate_root = "src/lib.rs", crate_type = "lib", data = [], edition = "2018", rustc_flags = [ "--cap-lints=allow", ], tags = [ "cargo-raze", "manual", ], version = "0.3.1", # buildifier: leave-alone deps = [ "@raze__native_tls__0_2_7//:native_tls", "@raze__tokio__0_2_25//:tokio", ] + selects.with_or({ # cfg(all(not(target_os = "macos"), not(windows), not(target_os = "ios"))) ( "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", ): [ ], "//conditions:default": [], }) + selects.with_or({ # cfg(any(target_os = "macos", target_os = "ios")) ( "@io_bazel_rules_rust//rust/platform:aarch64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", ): [ ], "//conditions:default": [], }) + selects.with_or({ # cfg(windows) ( "@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc", ): [ ], "//conditions:default": [], }), ) # Unsupported target "bad" with type "test" omitted # Unsupported target "google" with type "test" omitted # Unsupported target "smoke" with type "test" omitted