blob: b77a7f6f8a708d8bb4f8650f56c60bfe61bcc966 [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
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020034rust_library(
Lorenz Brund141d182023-10-02 15:07:01 +020035 name = "regex_automata",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020036 srcs = glob(["**/*.rs"]),
37 crate_features = [
Lorenz Brund141d182023-10-02 15:07:01 +020038 "alloc",
39 "dfa-onepass",
40 "dfa-search",
41 "hybrid",
42 "meta",
43 "nfa-backtrack",
44 "nfa-pikevm",
45 "nfa-thompson",
46 "perf-inline",
47 "perf-literal",
48 "perf-literal-multisubstring",
49 "perf-literal-substring",
50 "std",
51 "syntax",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020052 "unicode",
53 "unicode-age",
54 "unicode-bool",
55 "unicode-case",
56 "unicode-gencat",
57 "unicode-perl",
58 "unicode-script",
59 "unicode-segment",
Lorenz Brund141d182023-10-02 15:07:01 +020060 "unicode-word-boundary",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020061 ],
62 crate_root = "src/lib.rs",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020063 data = [],
Lorenz Brund141d182023-10-02 15:07:01 +020064 edition = "2021",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020065 rustc_flags = [
66 "--cap-lints=allow",
67 ],
68 tags = [
69 "cargo-raze",
Lorenz Brund141d182023-10-02 15:07:01 +020070 "crate-name=regex-automata",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020071 "manual",
72 ],
Lorenz Brund141d182023-10-02 15:07:01 +020073 version = "0.3.9",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020074 # buildifier: leave-alone
75 deps = [
Lorenz Brund141d182023-10-02 15:07:01 +020076 "@raze__aho_corasick__1_1_1//:aho_corasick",
77 "@raze__memchr__2_6_4//:memchr",
78 "@raze__regex_syntax__0_7_5//:regex_syntax",
Serge Bazanskicbf1fa92021-07-02 17:28:50 +020079 ],
80)
Lorenz Brund141d182023-10-02 15:07:01 +020081
82# Unsupported target "integration" with type "test" omitted