blob: 34536b745a5e45d3fce7e3653ba015b0f47807a9 [file] [log] [blame]
Brian Silvermancc09f182022-03-09 15:40:20 -08001###############################################################################
2# @generated
3# This file is auto-generated by the cargo-bazel tool.
4#
5# DO NOT MODIFY: Local changes may be replaced in future executions.
6###############################################################################
7
8load(
9 "@bazel_skylib//lib:selects.bzl",
10 "selects",
11)
12
13# buildifier: disable=bzl-visibility
14load("@rules_rust//crate_universe/private:selects.bzl", "select_with_or")
15load(
16 "@rules_rust//rust:defs.bzl",
17 "rust_library",
18)
19
20package(default_visibility = ["//visibility:public"])
21
22# licenses([
23# "TODO", # MIT
24# ])
25
26rust_library(
27 name = "generic_array",
28 srcs = glob(
29 include = [
30 "**/*.rs",
31 ],
32 exclude = [
33 ],
34 ),
35 aliases = selects.with_or({
36 "//conditions:default": {
37 },
38 }),
39 compile_data = glob(["**"]) + select_with_or({
40 "//conditions:default": [
41 ],
42 }),
43 crate_features = [
44 ],
45 crate_root = "src/lib.rs",
46 data = select_with_or({
47 "//conditions:default": [
48 ],
49 }),
50 edition = "2015",
51 proc_macro_deps = [
52 ] + select_with_or({
53 "//conditions:default": [
54 ],
55 }),
56 rustc_env = {
57 },
58 rustc_env_files = select_with_or({
59 "//conditions:default": [
60 ],
61 }),
62 rustc_flags = [
63 # In most cases, warnings in 3rd party crates are not interesting as
64 # they're out of the control of consumers. The flag here silences
65 # warnings. For more details see:
66 # https://doc.rust-lang.org/rustc/lints/levels.html
67 "--cap-lints=allow",
68 ] + select_with_or({
69 "//conditions:default": [
70 ],
71 }),
72 tags = [
73 "cargo-bazel",
74 "manual",
75 "noclippy",
76 "norustfmt",
77 ],
78 version = "0.12.4",
79 deps = [
80 ] + select_with_or({
81 "//conditions:default": [
82 "@crate_index__typenum-1.15.0//:typenum",
83 ],
84 }),
85)