Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1 | """ |
| 2 | @generated |
| 3 | cargo-raze crate build file. |
| 4 | |
| 5 | DO NOT EDIT! Replaced on runs of cargo-raze |
| 6 | """ |
| 7 | |
| 8 | # buildifier: disable=load |
| 9 | load("@bazel_skylib//lib:selects.bzl", "selects") |
| 10 | |
| 11 | # buildifier: disable=load |
| 12 | load( |
| 13 | "@rules_rust//rust:defs.bzl", |
| 14 | "rust_binary", |
| 15 | "rust_library", |
| 16 | "rust_proc_macro", |
| 17 | "rust_test", |
| 18 | ) |
| 19 | |
| 20 | package(default_visibility = [ |
| 21 | # Public for visibility by "@raze__crate__version//" targets. |
| 22 | # |
| 23 | # Prefer access through "//third_party/cargo", which limits external |
| 24 | # visibility to explicit Cargo.toml dependencies. |
| 25 | "//visibility:public", |
| 26 | ]) |
| 27 | |
| 28 | licenses([ |
| 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 | |
| 46 | rust_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", |
| 69 | data = [], |
| 70 | edition = "2018", |
| 71 | rustc_flags = [ |
| 72 | "--cap-lints=allow", |
| 73 | ], |
| 74 | tags = [ |
| 75 | "cargo-raze", |
| 76 | "crate-name=regex", |
| 77 | "manual", |
| 78 | ], |
Brian Silverman | 6d3374a | 2022-07-13 20:10:47 -0700 | [diff] [blame] | 79 | version = "1.6.0", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 80 | # buildifier: leave-alone |
| 81 | deps = [ |
| 82 | "@raze__aho_corasick__0_7_18//:aho_corasick", |
| 83 | "@raze__memchr__2_5_0//:memchr", |
Brian Silverman | 6d3374a | 2022-07-13 20:10:47 -0700 | [diff] [blame] | 84 | "@raze__regex_syntax__0_6_27//:regex_syntax", |
Brian Silverman | 547eda0 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 85 | ], |
| 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 |