blob: 251f87204cc15a9a85bea4cfa5ddea6aca0f7138 [file] [log] [blame]
Lorenz Brund141d182023-10-02 15:07:01 +02001"""
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_efi/cargo", which limits external
24 # visibility to explicit Cargo.toml dependencies.
25 "//visibility:public",
26])
27
28licenses([
29 "reciprocal", # MPL-2.0 from expression "MPL-2.0"
30])
31
32# Generated Targets
33
34rust_library(
35 name = "uefi",
36 srcs = glob(["**/*.rs"]),
37 crate_features = [
38 "alloc",
39 "default",
40 "global_allocator",
41 "logger",
42 "panic-on-logger-errors",
43 ],
44 crate_root = "src/lib.rs",
45 data = [],
46 edition = "2021",
47 proc_macro_deps = [
48 "@rsefi__uefi_macros__0_12_0//:uefi_macros",
49 ],
50 rustc_flags = [
51 "--cap-lints=allow",
52 ],
53 tags = [
54 "cargo-raze",
55 "crate-name=uefi",
56 "manual",
57 ],
58 version = "0.24.0",
59 # buildifier: leave-alone
60 deps = [
61 "@rsefi__bitflags__2_4_0//:bitflags",
62 "@rsefi__log__0_4_20//:log",
63 "@rsefi__ptr_meta__0_2_0//:ptr_meta",
64 "@rsefi__ucs2__0_3_2//:ucs2",
65 "@rsefi__uefi_raw__0_3_0//:uefi_raw",
66 "@rsefi__uguid__2_0_1//:uguid",
67 ],
68)