forked from rust-osdev/uefi-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1.2 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
[package]
name = "uefi"
version = "0.12.0"
authors = ["Gabriel Majeri <gabriel.majeri6@gmail.com>"]
readme = "README.md"
edition = "2018"
exclude = [
".cargo/**",
"template/**",
"uefi-macros/**",
"uefi-services/**",
"uefi-test-runner/**",
]
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"
[badges]
travis-ci = { repository = "rust-osdev/uefi-rs" }
is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }
[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.1"
uefi-macros = "0.4.0"
[workspace]
members = [
"template",
"uefi-macros",
"uefi-services",
"uefi-test-runner",
]
[patch.crates-io]
uefi-macros = { path = "uefi-macros" }
uefi = { path = "." }