Serge Bazanski | cbf1fa9 | 2021-07-02 17:28:50 +0200 | [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:rust.bzl", |
| 14 | "rust_binary", |
| 15 | "rust_library", |
| 16 | "rust_test", |
| 17 | ) |
| 18 | |
| 19 | package(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 | |
| 27 | licenses([ |
| 28 | "notice", # MIT from expression "MIT OR Apache-2.0" |
| 29 | ]) |
| 30 | |
| 31 | # Generated Targets |
| 32 | |
| 33 | # Unsupported target "bench-holistic" with type "bench" omitted |
| 34 | |
| 35 | # Unsupported target "export_json" with type "example" omitted |
| 36 | |
| 37 | alias( |
| 38 | name = "elasticlunr_rs", |
| 39 | actual = ":elasticlunr", |
| 40 | tags = [ |
| 41 | "cargo-raze", |
| 42 | "manual", |
| 43 | ], |
| 44 | ) |
| 45 | |
| 46 | rust_library( |
| 47 | name = "elasticlunr", |
| 48 | srcs = glob(["**/*.rs"]), |
| 49 | crate_features = [ |
| 50 | ], |
| 51 | crate_root = "src/lib.rs", |
| 52 | crate_type = "lib", |
| 53 | data = [], |
| 54 | edition = "2015", |
| 55 | proc_macro_deps = [ |
| 56 | "@raze__serde_derive__1_0_126//:serde_derive", |
| 57 | "@raze__strum_macros__0_21_1//:strum_macros", |
| 58 | ], |
| 59 | rustc_flags = [ |
| 60 | "--cap-lints=allow", |
| 61 | ], |
| 62 | tags = [ |
| 63 | "cargo-raze", |
| 64 | "manual", |
| 65 | ], |
| 66 | version = "2.3.13", |
| 67 | # buildifier: leave-alone |
| 68 | deps = [ |
| 69 | "@raze__lazy_static__1_4_0//:lazy_static", |
| 70 | "@raze__regex__1_5_4//:regex", |
| 71 | "@raze__serde__1_0_126//:serde", |
| 72 | "@raze__serde_json__1_0_64//:serde_json", |
| 73 | "@raze__strum__0_21_0//:strum", |
| 74 | ], |
| 75 | ) |
| 76 | |
| 77 | # Unsupported target "test-compare" with type "test" omitted |
| 78 | |
| 79 | # Unsupported target "test-lang" with type "test" omitted |