Skip to content

Commit 78609ac

Browse files
committed
workspace: uefi (main library) is in a dedicated directory now
1 parent 3fe3639 commit 78609ac

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+41
-42
lines changed

Cargo.toml

Lines changed: 1 addition & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,3 @@
1-
[package]
2-
name = "uefi"
3-
version = "0.17.0"
4-
authors = ["Gabriel Majeri <[email protected]>"]
5-
readme = "README.md"
6-
edition = "2021"
7-
exclude = [
8-
".cargo/**",
9-
"template/**",
10-
"uefi-macros/**",
11-
"uefi-services/**",
12-
"uefi-test-runner/**",
13-
"xtask/**",
14-
]
15-
description = "Safe and easy-to-use wrapper for building UEFI apps"
16-
repository = "https://github.com/rust-osdev/uefi-rs"
17-
keywords = ["uefi", "efi"]
18-
categories = ["embedded", "no-std", "api-bindings"]
19-
license = "MPL-2.0"
20-
21-
[features]
22-
default = ["panic-on-logger-errors"]
23-
alloc = []
24-
exts = []
25-
logger = []
26-
# Ignore text output errors in logger as a workaround for firmware issues that
27-
# were observed on the VirtualBox UEFI implementation (see uefi-rs#121).
28-
# In those cases, this feature can be excluded by removing the default features.
29-
panic-on-logger-errors = []
30-
31-
[dependencies]
32-
bitflags = "1.3.1"
33-
log = { version = "0.4.5", default-features = false }
34-
ucs2 = "0.3.2"
35-
uefi-macros = "0.8.0"
36-
371
[workspace]
382
members = [
393
"template",
@@ -46,8 +10,4 @@ members = [
4610
[patch.crates-io]
4711
uefi-macros = { path = "uefi-macros" }
4812
uefi-services = { path = "uefi-services" }
49-
uefi = { path = "." }
50-
51-
[package.metadata.docs.rs]
52-
all-features = true
53-
rustdoc-args = ["--cfg", "docsrs"]
13+
uefi = { path = "uefi" }

uefi-test-runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66
edition = "2021"
77

88
[dependencies]
9-
uefi = { path = "..", features = ['exts'] }
9+
uefi = { path = "../uefi", features = ['exts'] }
1010
uefi-services = { path = "../uefi-services" }
1111

1212
log = { version = "0.4.11", default-features = false }

uefi/Cargo.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[package]
2+
name = "uefi"
3+
version = "0.17.0"
4+
authors = ["Gabriel Majeri <[email protected]>"]
5+
readme = "README.md"
6+
edition = "2021"
7+
exclude = [
8+
".cargo/**",
9+
"template/**",
10+
"uefi-macros/**",
11+
"uefi-services/**",
12+
"uefi-test-runner/**",
13+
"xtask/**",
14+
]
15+
description = "Safe and easy-to-use wrapper for building UEFI apps"
16+
repository = "https://github.com/rust-osdev/uefi-rs"
17+
keywords = ["uefi", "efi"]
18+
categories = ["embedded", "no-std", "api-bindings"]
19+
license = "MPL-2.0"
20+
21+
[features]
22+
default = ["panic-on-logger-errors"]
23+
alloc = []
24+
exts = []
25+
logger = []
26+
# Ignore text output errors in logger as a workaround for firmware issues that
27+
# were observed on the VirtualBox UEFI implementation (see uefi-rs#121).
28+
# In those cases, this feature can be excluded by removing the default features.
29+
panic-on-logger-errors = []
30+
31+
[dependencies]
32+
bitflags = "1.3.1"
33+
log = { version = "0.4.5", default-features = false }
34+
ucs2 = "0.3.2"
35+
uefi-macros = "0.8.0"
36+
37+
[package.metadata.docs.rs]
38+
all-features = true
39+
rustdoc-args = ["--cfg", "docsrs"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)