forked from rust-osdev/uefi-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (46 loc) · 1.12 KB
/
Cargo.toml
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
[package]
name = "uefi"
version = "0.15.2"
authors = ["Gabriel Majeri <gabriel.majeri6@gmail.com>"]
readme = "README.md"
edition = "2021"
exclude = [
".cargo/**",
"template/**",
"uefi-macros/**",
"uefi-services/**",
"uefi-test-runner/**",
"xtask/**",
]
description = "Safe and easy-to-use wrapper for building UEFI apps"
repository = "https://github.com/rust-osdev/uefi-rs"
keywords = ["uefi", "efi"]
categories = ["embedded", "no-std", "api-bindings"]
license = "MPL-2.0"
[features]
default = []
alloc = []
exts = []
logger = []
# Ignore text output errors in logger as a workaround for firmware issues that
# were observed on the VirtualBox UEFI implementation (see uefi-rs#121)
ignore-logger-errors = []
[dependencies]
bitflags = "1.3.2"
log = { version = "0.4.14", default-features = false }
ucs2 = "0.3.2"
uefi-macros = "0.6.0"
[workspace]
members = [
"template",
"uefi-macros",
"uefi-services",
"uefi-test-runner",
"xtask",
]
[patch.crates-io]
uefi-macros = { path = "uefi-macros" }
uefi-services = { path = "uefi-services" }
uefi = { path = "." }
[package.metadata.docs.rs]
all-features = true