-
-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
57 lines (51 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "uefi"
version = "0.36.1"
readme = "README.md"
description = """
This crate makes it easy to develop Rust software that leverages safe,
convenient, and performant abstractions for UEFI functionality.
"""
authors.workspace = true
categories.workspace = true
edition.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
# Feature documentation in uefi/lib.rs.
[features]
# KEEP this feature list in sync with doc in uefi/lib.rs!
default = [ ]
alloc = []
# Integration with jiff crate `>= v0.2`
jiff02 = ["dep:jiff"]
# Integration with time crate `>= v0.3`
time03 = ["dep:time"]
# Generic gate to code that uses unstable features of Rust, needing a nightly
# toolchain.
unstable = []
# Helper features:
logger = []
global_allocator = []
panic_handler = []
# Some convenience when running inside QEMU.
# - dependency log-debugcon: logical, not technical
# - dependency panic_handler: logical, not technical
qemu = ["dep:qemu-exit", "panic_handler", "log-debugcon"]
log-debugcon = []
[dependencies]
bitflags.workspace = true
log.workspace = true
ptr_meta.workspace = true
jiff = { workspace = true, optional = true }
time = { workspace = true, optional = true }
uguid.workspace = true
cfg-if = "1.0.0"
ucs2 = "0.3.3"
uefi-macros = "0.19.0"
uefi-raw = "0.13.0"
qemu-exit = { version = "3.0.2", optional = true }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]