blob: e53fb5c27345cf2903b2dd61e07bf501c959568c [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 //crate_universe/3rdparty:crates_vendor
7###############################################################################
8
9load(
10 "@bazel_skylib//lib:selects.bzl",
11 "selects",
12)
13load(
14 "@rules_rust//cargo:defs.bzl",
15 "cargo_build_script",
16)
17
18# buildifier: disable=bzl-visibility
19load("@rules_rust//crate_universe/private:selects.bzl", "select_with_or")
20load(
21 "@rules_rust//rust:defs.bzl",
22 "rust_library",
23)
24
25package(default_visibility = ["//visibility:public"])
26
27# licenses([
28# "TODO", # MIT OR Apache-2.0
29# ])
30
31rust_library(
32 name = "num_integer",
33 srcs = glob(
34 include = [
35 "**/*.rs",
36 ],
37 exclude = [
38 ],
39 ),
40 aliases = selects.with_or({
41 "//conditions:default": {
42 },
43 }),
44 compile_data = glob(
45 include = ["**"],
46 exclude = [
47 "BUILD",
48 "BUILD.bazel",
49 "WORKSPACE",
50 "WORKSPACE.bazel",
51 ],
52 ) + select_with_or({
53 "//conditions:default": [
54 ],
55 }),
56 crate_features = [
57 "default",
58 "std",
59 ],
60 crate_root = "src/lib.rs",
61 data = select_with_or({
62 "//conditions:default": [
63 ],
64 }),
65 edition = "2015",
66 proc_macro_deps = [
67 ] + select_with_or({
68 "//conditions:default": [
69 ],
70 }),
71 rustc_env = {
72 },
73 rustc_env_files = select_with_or({
74 "//conditions:default": [
75 ],
76 }),
77 rustc_flags = [
78 # In most cases, warnings in 3rd party crates are not interesting as
79 # they're out of the control of consumers. The flag here silences
80 # warnings. For more details see:
81 # https://doc.rust-lang.org/rustc/lints/levels.html
82 "--cap-lints=allow",
83 ],
84 tags = [
85 "cargo-bazel",
86 "manual",
87 "noclippy",
88 "norustfmt",
89 ],
90 version = "0.1.45",
91 deps = [
92 ] + select_with_or({
93 "//conditions:default": [
94 "@cui__num-integer-0.1.45//:build_script_build",
95 "@cui__num-traits-0.2.15//:num_traits",
96 ],
97 }),
98)
99
100cargo_build_script(
101 # See comment associated with alias. Do not change this name
102 name = "num-integer_build_script",
103 srcs = glob(
104 include = [
105 "**/*.rs",
106 ],
107 exclude = [
108 ],
109 ),
110 aliases = selects.with_or({
111 "//conditions:default": {
112 },
113 }),
114 build_script_env = {
115 },
116 compile_data = select_with_or({
117 "//conditions:default": [
118 ],
119 }),
120 crate_features = [
121 "default",
122 "std",
123 ],
124 crate_name = "build_script_build",
125 crate_root = "build.rs",
126 data = glob(["**"]) + select_with_or({
127 "//conditions:default": [
128 ],
129 }),
130 edition = "2015",
131 proc_macro_deps = [
132 ] + select_with_or({
133 "//conditions:default": [
134 ],
135 }),
136 rustc_env = {
137 },
138 rustc_env_files = select_with_or({
139 "//conditions:default": [
140 ],
141 }),
142 rustc_flags = [
143 # In most cases, warnings in 3rd party crates are not interesting as
144 # they're out of the control of consumers. The flag here silences
145 # warnings. For more details see:
146 # https://doc.rust-lang.org/rustc/lints/levels.html
147 "--cap-lints=allow",
148 ],
149 tags = [
150 "cargo-bazel",
151 "manual",
152 "noclippy",
153 "norustfmt",
154 ],
155 tools = select_with_or({
156 "//conditions:default": [
157 ],
158 }),
159 version = "0.1.45",
160 visibility = ["//visibility:private"],
161 deps = [
162 ] + select_with_or({
163 "//conditions:default": [
164 "@cui__autocfg-1.1.0//:autocfg",
165 ],
166 }),
167)
168
169alias(
170 # Because `cargo_build_script` does some invisible target name mutating to
171 # determine the package and crate name for a build script, the Bazel
172 # target namename of any build script cannot be the Cargo canonical name
173 # of `build_script_build` without losing out on having certain Cargo
174 # environment variables set.
175 name = "build_script_build",
176 actual = "num-integer_build_script",
177 tags = [
178 "manual",
179 ],
180)