anki/cargo/remote/BUILD.tinyvec-1.2.0.bazel
Damien Elmes cf2613e869 update Rust deps
- tokio 1.0
- updated reqwest, thanks to Rumo
- other minor dep updates

the reqwest build file has been split into two, as it was awkward
to manually update the combined file, and the platform gate is now
on the target in rslib/
2021-04-27 22:18:12 +10:00

64 lines
1.3 KiB
Plaintext
Vendored

"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
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", # Zlib from expression "Zlib OR (Apache-2.0 OR MIT)"
])
# Generated Targets
# Unsupported target "macros" with type "bench" omitted
rust_library(
name = "tinyvec",
srcs = glob(["**/*.rs"]),
crate_features = [
"alloc",
"default",
"tinyvec_macros",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "1.2.0",
# buildifier: leave-alone
deps = [
"@raze__tinyvec_macros__0_1_0//:tinyvec_macros",
],
)
# Unsupported target "arrayvec" with type "test" omitted
# Unsupported target "tinyvec" with type "test" omitted