Adam Snaider | 1c095c9 | 2023-07-08 02:09:58 -0400 | [diff] [blame^] | 1 | ############################################################################### |
| 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 @//tools/rust_analyzer/3rdparty:crates_vendor |
| 7 | ############################################################################### |
| 8 | |
| 9 | load("@rules_rust//rust:defs.bzl", "rust_library") |
| 10 | |
| 11 | package(default_visibility = ["//visibility:public"]) |
| 12 | |
| 13 | # licenses([ |
| 14 | # "TODO", # MIT OR Apache-2.0 |
| 15 | # ]) |
| 16 | |
| 17 | rust_library( |
| 18 | name = "regex", |
| 19 | srcs = glob(["**/*.rs"]), |
| 20 | compile_data = glob( |
| 21 | include = ["**"], |
| 22 | exclude = [ |
| 23 | "**/* *", |
| 24 | ".tmp_git_root/**/*", |
| 25 | "BUILD", |
| 26 | "BUILD.bazel", |
| 27 | "WORKSPACE", |
| 28 | "WORKSPACE.bazel", |
| 29 | ], |
| 30 | ), |
| 31 | crate_features = [ |
| 32 | "aho-corasick", |
| 33 | "memchr", |
| 34 | "perf", |
| 35 | "perf-cache", |
| 36 | "perf-dfa", |
| 37 | "perf-inline", |
| 38 | "perf-literal", |
| 39 | "std", |
| 40 | ], |
| 41 | crate_root = "src/lib.rs", |
| 42 | edition = "2018", |
| 43 | rustc_flags = ["--cap-lints=allow"], |
| 44 | tags = [ |
| 45 | "cargo-bazel", |
| 46 | "crate-name=regex", |
| 47 | "manual", |
| 48 | "noclippy", |
| 49 | "norustfmt", |
| 50 | ], |
| 51 | target_compatible_with = select({ |
| 52 | "@rules_rust//rust/platform:aarch64-apple-darwin": [], |
| 53 | "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], |
| 54 | "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], |
| 55 | "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], |
| 56 | "@rules_rust//rust/platform:armv7-linux-androideabi": [], |
| 57 | "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], |
| 58 | "@rules_rust//rust/platform:i686-apple-darwin": [], |
| 59 | "@rules_rust//rust/platform:i686-pc-windows-msvc": [], |
| 60 | "@rules_rust//rust/platform:i686-unknown-freebsd": [], |
| 61 | "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], |
| 62 | "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], |
| 63 | "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], |
| 64 | "@rules_rust//rust/platform:x86_64-apple-darwin": [], |
| 65 | "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], |
| 66 | "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], |
| 67 | "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], |
| 68 | "//conditions:default": ["@platforms//:incompatible"], |
| 69 | }), |
| 70 | version = "1.7.0", |
| 71 | deps = [ |
| 72 | "@rules_rust_rust_analyzer__aho-corasick-0.7.20//:aho_corasick", |
| 73 | "@rules_rust_rust_analyzer__memchr-2.5.0//:memchr", |
| 74 | "@rules_rust_rust_analyzer__regex-syntax-0.6.28//:regex_syntax", |
| 75 | ], |
| 76 | ) |