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