forked from rust-osdev/uefi-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move uefi-exts into core as an optional feature
- Loading branch information
1 parent
e9fc29d
commit 502aecd
Showing
11 changed files
with
99 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
[package] | ||
name = "uefi" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Gabriel Majeri <[email protected]>"] | ||
readme = "README.md" | ||
edition = "2018" | ||
exclude = ["uefi-test-runner/**"] | ||
exclude = [ | ||
"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"] | ||
|
@@ -19,6 +23,7 @@ is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" } | |
[features] | ||
default = [] | ||
alloc = [] | ||
exts = [] | ||
logger = [] | ||
|
||
[dependencies] | ||
|
@@ -29,7 +34,6 @@ uefi-macros = "0.2.1" | |
|
||
[workspace] | ||
members = [ | ||
"uefi-exts", | ||
"uefi-macros", | ||
"uefi-services", | ||
"uefi-test-runner", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
use uefi::prelude::*; | ||
use uefi_exts::BootServicesExt; | ||
|
||
use uefi::proto; | ||
|
||
|