blob: 78008a6db5e851212350e9ce513d041c770d52e0 [file] [log] [blame]
Serge Bazanskicbf1fa92021-07-02 17:28:50 +02001"""
2@generated
3cargo-raze crate build file.
4
5DO NOT EDIT! Replaced on runs of cargo-raze
6"""
7
8# buildifier: disable=load
9load("@bazel_skylib//lib:selects.bzl", "selects")
10
11# buildifier: disable=load
12load(
Leopold2aa8b182023-01-14 23:31:43 +010013 "@rules_rust//rust:defs.bzl",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020014 "rust_binary",
15 "rust_library",
Leopold2aa8b182023-01-14 23:31:43 +010016 "rust_proc_macro",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020017 "rust_test",
18)
19
20package(default_visibility = [
21 # Public for visibility by "@raze__crate__version//" targets.
22 #
23 # Prefer access through "//third_party/rust/cargo", which limits external
24 # visibility to explicit Cargo.toml dependencies.
25 "//visibility:public",
26])
27
28licenses([
29 "notice", # MIT from expression "MIT OR Apache-2.0"
30])
31
32# Generated Targets
33
34# Unsupported target "shootout-regex-dna" with type "example" omitted
35
36# Unsupported target "shootout-regex-dna-bytes" with type "example" omitted
37
38# Unsupported target "shootout-regex-dna-cheat" with type "example" omitted
39
40# Unsupported target "shootout-regex-dna-replace" with type "example" omitted
41
42# Unsupported target "shootout-regex-dna-single" with type "example" omitted
43
44# Unsupported target "shootout-regex-dna-single-cheat" with type "example" omitted
45
46rust_library(
47 name = "regex",
48 srcs = glob(["**/*.rs"]),
49 crate_features = [
50 "aho-corasick",
51 "default",
52 "memchr",
53 "perf",
54 "perf-cache",
55 "perf-dfa",
56 "perf-inline",
57 "perf-literal",
58 "std",
59 "unicode",
60 "unicode-age",
61 "unicode-bool",
62 "unicode-case",
63 "unicode-gencat",
64 "unicode-perl",
65 "unicode-script",
66 "unicode-segment",
67 ],
68 crate_root = "src/lib.rs",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020069 data = [],
70 edition = "2018",
71 rustc_flags = [
72 "--cap-lints=allow",
73 ],
74 tags = [
75 "cargo-raze",
Leopold2aa8b182023-01-14 23:31:43 +010076 "crate-name=regex",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020077 "manual",
78 ],
Leopold2aa8b182023-01-14 23:31:43 +010079 version = "1.7.1",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020080 # buildifier: leave-alone
81 deps = [
Leopold2aa8b182023-01-14 23:31:43 +010082 "@raze__aho_corasick__0_7_20//:aho_corasick",
83 "@raze__memchr__2_5_0//:memchr",
84 "@raze__regex_syntax__0_6_28//:regex_syntax",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020085 ],
86)
87
88# Unsupported target "backtrack" with type "test" omitted
89
90# Unsupported target "backtrack-bytes" with type "test" omitted
91
92# Unsupported target "backtrack-utf8bytes" with type "test" omitted
93
94# Unsupported target "crates-regex" with type "test" omitted
95
96# Unsupported target "default" with type "test" omitted
97
98# Unsupported target "default-bytes" with type "test" omitted
99
100# Unsupported target "nfa" with type "test" omitted
101
102# Unsupported target "nfa-bytes" with type "test" omitted
103
104# Unsupported target "nfa-utf8bytes" with type "test" omitted