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 "lib" with type "bench" omitted |
| 34 | |
| 35 | # Unsupported target "sha1sum" with type "example" omitted |
| 36 | |
| 37 | alias( |
| 38 | name = "sha_1", |
| 39 | actual = ":sha1", |
| 40 | tags = [ |
| 41 | "cargo-raze", |
| 42 | "manual", |
| 43 | ], |
| 44 | ) |
| 45 | |
| 46 | rust_library( |
| 47 | name = "sha1", |
| 48 | srcs = glob(["**/*.rs"]), |
| 49 | crate_features = [ |
| 50 | ], |
| 51 | crate_root = "src/lib.rs", |
| 52 | crate_type = "lib", |
| 53 | data = [], |
| 54 | edition = "2015", |
| 55 | rustc_flags = [ |
| 56 | "--cap-lints=allow", |
| 57 | ], |
| 58 | tags = [ |
| 59 | "cargo-raze", |
| 60 | "manual", |
| 61 | ], |
| 62 | version = "0.8.2", |
| 63 | # buildifier: leave-alone |
| 64 | deps = [ |
| 65 | "@raze__block_buffer__0_7_3//:block_buffer", |
| 66 | "@raze__digest__0_8_1//:digest", |
| 67 | "@raze__fake_simd__0_1_2//:fake_simd", |
| 68 | "@raze__opaque_debug__0_2_3//:opaque_debug", |
| 69 | ], |
| 70 | ) |
| 71 | |
| 72 | # Unsupported target "lib" with type "test" omitted |