blob: 8e7106345ad43f80c910e063c025ab8c0ea666a4 [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 //tools/rust_analyzer/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", # Unlicense/MIT
29# ])
30
31rust_library(
32 name = "memchr",
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 = "2018",
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 = "2.5.0",
91 deps = [
92 ] + select_with_or({
93 "//conditions:default": [
94 "@rules_rust_rust_analyzer__memchr-2.5.0//:build_script_build",
95 ],
96 }),
97)
98
99cargo_build_script(
100 # See comment associated with alias. Do not change this name
101 name = "memchr_build_script",
102 srcs = glob(
103 include = [
104 "**/*.rs",
105 ],
106 exclude = [
107 ],
108 ),
109 aliases = selects.with_or({
110 "//conditions:default": {
111 },
112 }),
113 build_script_env = {
114 },
115 compile_data = select_with_or({
116 "//conditions:default": [
117 ],
118 }),
119 crate_features = [
120 "default",
121 "std",
122 ],
123 crate_name = "build_script_build",
124 crate_root = "build.rs",
125 data = glob(["**"]) + select_with_or({
126 "//conditions:default": [
127 ],
128 }),
129 edition = "2018",
130 proc_macro_deps = [
131 ] + select_with_or({
132 "//conditions:default": [
133 ],
134 }),
135 rustc_env = {
136 },
137 rustc_env_files = select_with_or({
138 "//conditions:default": [
139 ],
140 }),
141 rustc_flags = [
142 # In most cases, warnings in 3rd party crates are not interesting as
143 # they're out of the control of consumers. The flag here silences
144 # warnings. For more details see:
145 # https://doc.rust-lang.org/rustc/lints/levels.html
146 "--cap-lints=allow",
147 ],
148 tags = [
149 "cargo-bazel",
150 "manual",
151 "noclippy",
152 "norustfmt",
153 ],
154 tools = select_with_or({
155 "//conditions:default": [
156 ],
157 }),
158 version = "2.5.0",
159 visibility = ["//visibility:private"],
160 deps = [
161 ] + select_with_or({
162 "//conditions:default": [
163 ],
164 }),
165)
166
167alias(
168 # Because `cargo_build_script` does some invisible target name mutating to
169 # determine the package and crate name for a build script, the Bazel
170 # target namename of any build script cannot be the Cargo canonical name
171 # of `build_script_build` without losing out on having certain Cargo
172 # environment variables set.
173 name = "build_script_build",
174 actual = "memchr_build_script",
175 tags = [
176 "manual",
177 ],
178)