blob: 957cd6ea32e5eea8eb1c1f525bce923aa6064241 [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
Leopold2aa8b182023-01-14 23:31:43 +010038# Unsupported target "lazy_static" with type "example" omitted
39
40# Unsupported target "reentrant_init_deadlocks" with type "example" omitted
41
42# Unsupported target "regex" with type "example" omitted
43
44# Unsupported target "test_synchronization" with type "example" omitted
45
46rust_library(
47 name = "once_cell",
48 srcs = glob(["**/*.rs"]),
49 crate_features = [
50 "alloc",
51 "default",
52 "race",
53 "std",
54 ],
55 crate_root = "src/lib.rs",
56 data = [],
57 edition = "2021",
58 rustc_flags = [
59 "--cap-lints=allow",
60 ],
61 tags = [
62 "cargo-raze",
63 "crate-name=once_cell",
64 "manual",
65 ],
Lorenz Brund141d182023-10-02 15:07:01 +020066 version = "1.18.0",
Leopold2aa8b182023-01-14 23:31:43 +010067 # buildifier: leave-alone
68 deps = [
69 ],
70)
71
72# Unsupported target "it" with type "test" omitted