blob: 56612ea092f8d4eba0cdf7b88eb47adc432a61a9 [file] [log] [blame]
Brian Silverman547eda02022-05-19 23:14:08 -07001"""
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/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# buildifier: disable=out-of-order-load
34# buildifier: disable=load-on-top
35load(
36 "@rules_rust//cargo:cargo_build_script.bzl",
37 "cargo_build_script",
38)
39
40cargo_build_script(
41 name = "log_build_script",
42 srcs = glob(["**/*.rs"]),
43 build_script_env = {
44 },
45 crate_features = [
46 "std",
47 ],
48 crate_root = "build.rs",
49 data = glob(["**"]),
50 edition = "2015",
51 rustc_flags = [
52 "--cap-lints=allow",
53 "--cfg=atomic_cas",
54 ],
55 tags = [
56 "cargo-raze",
57 "manual",
58 ],
59 version = "0.4.17",
60 visibility = ["//visibility:private"],
61 deps = [
62 ],
63)
64
65# Unsupported target "value" with type "bench" omitted
66
67rust_library(
68 name = "log",
69 srcs = glob(["**/*.rs"]),
70 crate_features = [
71 "std",
72 ],
73 crate_root = "src/lib.rs",
74 data = [],
75 edition = "2015",
76 rustc_flags = [
77 "--cap-lints=allow",
78 "--cfg=atomic_cas",
79 ],
80 tags = [
81 "cargo-raze",
82 "crate-name=log",
83 "manual",
84 ],
85 version = "0.4.17",
86 # buildifier: leave-alone
87 deps = [
88 ":log_build_script",
89 "@raze__cfg_if__1_0_0//:cfg_if",
90 ],
91)
92
93# Unsupported target "filters" with type "test" omitted
94
95# Unsupported target "macros" with type "test" omitted