Alphan Ulusoy | dbbb1fe | 2022-01-03 13:28:36 -0500 | [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 | rust_library( |
| 35 | name = "rand_chacha", |
| 36 | srcs = glob(["**/*.rs"]), |
| 37 | crate_features = [ |
| 38 | "std", |
| 39 | ], |
| 40 | crate_root = "src/lib.rs", |
| 41 | data = [], |
| 42 | edition = "2018", |
| 43 | rustc_flags = [ |
| 44 | "--cap-lints=allow", |
| 45 | ], |
| 46 | tags = [ |
| 47 | "cargo-raze", |
| 48 | "manual", |
| 49 | ], |
| 50 | version = "0.3.1", |
| 51 | # buildifier: leave-alone |
| 52 | deps = [ |
| 53 | "@raze__ppv_lite86__0_2_16//:ppv_lite86", |
| 54 | "@raze__rand_core__0_6_3//:rand_core", |
| 55 | ], |
| 56 | ) |