blob: 6cd11a5814cbd331d8b339d9a1f9d18373bd2b34 [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(
13 "@rules_rust//rust:rust.bzl",
14 "rust_binary",
15 "rust_library",
16 "rust_test",
17)
18
19package(default_visibility = [
20 # Public for visibility by "@raze__crate__version//" targets.
21 #
22 # Prefer access through "//third_party/rust/cargo", which limits external
23 # visibility to explicit Cargo.toml dependencies.
24 "//visibility:public",
25])
26
27licenses([
28 "notice", # MIT from expression "MIT OR Apache-2.0"
29])
30
31# Generated Targets
32
33# Unsupported target "shootout-regex-dna" with type "example" omitted
34
35# Unsupported target "shootout-regex-dna-bytes" with type "example" omitted
36
37# Unsupported target "shootout-regex-dna-cheat" with type "example" omitted
38
39# Unsupported target "shootout-regex-dna-replace" with type "example" omitted
40
41# Unsupported target "shootout-regex-dna-single" with type "example" omitted
42
43# Unsupported target "shootout-regex-dna-single-cheat" with type "example" omitted
44
45rust_library(
46 name = "regex",
47 srcs = glob(["**/*.rs"]),
48 crate_features = [
49 "aho-corasick",
50 "default",
51 "memchr",
52 "perf",
53 "perf-cache",
54 "perf-dfa",
55 "perf-inline",
56 "perf-literal",
57 "std",
58 "unicode",
59 "unicode-age",
60 "unicode-bool",
61 "unicode-case",
62 "unicode-gencat",
63 "unicode-perl",
64 "unicode-script",
65 "unicode-segment",
66 ],
67 crate_root = "src/lib.rs",
68 crate_type = "lib",
69 data = [],
70 edition = "2018",
71 rustc_flags = [
72 "--cap-lints=allow",
73 ],
74 tags = [
75 "cargo-raze",
76 "manual",
77 ],
78 version = "1.5.4",
79 # buildifier: leave-alone
80 deps = [
81 "@raze__aho_corasick__0_7_18//:aho_corasick",
82 "@raze__memchr__2_4_0//:memchr",
83 "@raze__regex_syntax__0_6_25//:regex_syntax",
84 ],
85)
86
87# Unsupported target "backtrack" with type "test" omitted
88
89# Unsupported target "backtrack-bytes" with type "test" omitted
90
91# Unsupported target "backtrack-utf8bytes" with type "test" omitted
92
93# Unsupported target "crates-regex" with type "test" omitted
94
95# Unsupported target "default" with type "test" omitted
96
97# Unsupported target "default-bytes" with type "test" omitted
98
99# Unsupported target "nfa" with type "test" omitted
100
101# Unsupported target "nfa-bytes" with type "test" omitted
102
103# Unsupported target "nfa-utf8bytes" with type "test" omitted