forked from rust-osdev/uefi-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (41 loc) · 1005 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (41 loc) · 1005 Bytes
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
[package]
name = "uefi"
version = "0.4.3"
authors = ["Gabriel Majeri <gabriel.majeri6@gmail.com>"]
readme = "README.md"
edition = "2018"
exclude = [
".cargo/**",
"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 = []
[dependencies]
bitflags = "1.2.1"
log = { version = "0.4.8", default-features = false }
ucs2 = "0.3.1"
uefi-macros = "0.3.0"
[workspace]
members = [
"uefi-macros",
"uefi-services",
"uefi-test-runner",
]
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"