blob: f8ca983685d6b9a0c793d2dca798e4a5fa677b3c [file] [log] [blame]
Leopold2aa8b182023-01-14 23:31:43 +01001"""
2@generated
3cargo-raze crate build file.
4
5DO NOT EDIT! Replaced on runs of cargo-raze
6"""
7
8# buildifier: disable=load
9load("@bazel_skylib//lib:selects.bzl", "selects")
10
11# buildifier: disable=load
12load(
13 "@rules_rust//rust:defs.bzl",
14 "rust_binary",
15 "rust_library",
16 "rust_proc_macro",
17 "rust_test",
18)
19
20package(default_visibility = [
21 # Public for visibility by "@raze__crate__version//" targets.
22 #
23 # Prefer access through "//third_party/rust/cargo", which limits external
24 # visibility to explicit Cargo.toml dependencies.
25 "//visibility:public",
26])
27
28licenses([
29 "notice", # MIT from expression "MIT OR Apache-2.0"
30])
31
32# Generated Targets
33
34# Unsupported target "bench" with type "example" omitted
35
36# Unsupported target "bench_acquire" with type "example" omitted
37
38# Unsupported target "bench_vs_lazy_static" with type "example" omitted
39
40# Unsupported target "lazy_static" with type "example" omitted
41
42# Unsupported target "reentrant_init_deadlocks" with type "example" omitted
43
44# Unsupported target "regex" with type "example" omitted
45
46# Unsupported target "test_synchronization" with type "example" omitted
47
48rust_library(
49 name = "once_cell",
50 srcs = glob(["**/*.rs"]),
51 crate_features = [
52 "alloc",
53 "default",
54 "race",
55 "std",
56 ],
57 crate_root = "src/lib.rs",
58 data = [],
59 edition = "2021",
60 rustc_flags = [
61 "--cap-lints=allow",
62 ],
63 tags = [
64 "cargo-raze",
65 "crate-name=once_cell",
66 "manual",
67 ],
68 version = "1.17.0",
69 # buildifier: leave-alone
70 deps = [
71 ],
72)
73
74# Unsupported target "it" with type "test" omitted