blob: 3c99ffc2b5689996afe187d6a84c75f0ac79d845 [file] [log] [blame]
Brian Silverman5f6f2762022-08-13 19:30:05 -07001###############################################################################
2# @generated
3# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
5#
6# bazel run //sys/complex/3rdparty:crates_vendor
7###############################################################################
8
9load(
10 "@bazel_skylib//lib:selects.bzl",
11 "selects",
12)
13
14# buildifier: disable=bzl-visibility
15load("@rules_rust//crate_universe/private:selects.bzl", "select_with_or")
16load(
17 "@rules_rust//rust:defs.bzl",
18 "rust_library",
19)
20
21package(default_visibility = ["//visibility:public"])
22
23# licenses([
24# "TODO", # Zlib OR Apache-2.0 OR MIT
25# ])
26
27rust_library(
28 name = "tinyvec",
29 srcs = glob(
30 include = [
31 "**/*.rs",
32 ],
33 exclude = [
34 ],
35 ),
36 aliases = selects.with_or({
37 "//conditions:default": {
38 },
39 }),
40 compile_data = glob(
41 include = ["**"],
42 exclude = [
43 "BUILD",
44 "BUILD.bazel",
45 "WORKSPACE",
46 "WORKSPACE.bazel",
47 ],
48 ) + select_with_or({
49 "//conditions:default": [
50 ],
51 }),
52 crate_features = [
53 "alloc",
54 "default",
55 "tinyvec_macros",
56 ],
57 crate_root = "src/lib.rs",
58 data = select_with_or({
59 "//conditions:default": [
60 ],
61 }),
62 edition = "2018",
63 proc_macro_deps = [
64 ] + select_with_or({
65 "//conditions:default": [
66 ],
67 }),
68 rustc_env = {
69 },
70 rustc_env_files = select_with_or({
71 "//conditions:default": [
72 ],
73 }),
74 rustc_flags = [
75 # In most cases, warnings in 3rd party crates are not interesting as
76 # they're out of the control of consumers. The flag here silences
77 # warnings. For more details see:
78 # https://doc.rust-lang.org/rustc/lints/levels.html
79 "--cap-lints=allow",
80 ],
81 tags = [
82 "cargo-bazel",
83 "manual",
84 "noclippy",
85 "norustfmt",
86 ],
87 version = "1.6.0",
88 deps = [
89 ] + select_with_or({
90 "//conditions:default": [
91 "@complex_sys__tinyvec_macros-0.1.0//:tinyvec_macros",
92 ],
93 }),
94)