blob: 782b5007a3fb430555f72088a54e892b9fb41a34 [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)
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", # MIT OR Apache-2.0
25# ])
26
27rust_library(
28 name = "regex_syntax",
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 "default",
54 "unicode",
55 "unicode-age",
56 "unicode-bool",
57 "unicode-case",
58 "unicode-gencat",
59 "unicode-perl",
60 "unicode-script",
61 "unicode-segment",
62 ],
63 crate_root = "src/lib.rs",
64 data = select_with_or({
65 "//conditions:default": [
66 ],
67 }),
68 edition = "2018",
69 proc_macro_deps = [
70 ] + select_with_or({
71 "//conditions:default": [
72 ],
73 }),
74 rustc_env = {
75 },
76 rustc_env_files = select_with_or({
77 "//conditions:default": [
78 ],
79 }),
80 rustc_flags = [
81 # In most cases, warnings in 3rd party crates are not interesting as
82 # they're out of the control of consumers. The flag here silences
83 # warnings. For more details see:
84 # https://doc.rust-lang.org/rustc/lints/levels.html
85 "--cap-lints=allow",
86 ],
87 tags = [
88 "cargo-bazel",
89 "manual",
90 "noclippy",
91 "norustfmt",
92 ],
93 version = "0.6.27",
94 deps = [
95 ] + select_with_or({
96 "//conditions:default": [
97 ],
98 }),
99)