We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a18f1e commit 2e3d724Copy full SHA for 2e3d724
.cargo/config renamed to .cargo/config.toml
Cargo.toml
@@ -1,7 +1,9 @@
1
[package]
2
name = "uefi"
3
version = "0.17.0"
4
-authors = ["Gabriel Majeri <gabriel.majeri6@gmail.com>"]
+authors = [
5
+ "The Rust OSDev team"
6
+]
7
readme = "README.md"
8
edition = "2021"
9
exclude = [
@@ -12,7 +14,7 @@ exclude = [
12
14
"uefi-test-runner/**",
13
15
"xtask/**",
16
]
-description = "Safe and easy-to-use wrapper for building UEFI apps"
17
+description = "Safe and easy-to-use wrapper for building UEFI apps."
18
repository = "https://github.com/rust-osdev/uefi-rs"
19
keywords = ["uefi", "efi"]
20
categories = ["embedded", "no-std", "api-bindings"]
@@ -30,7 +32,7 @@ panic-on-logger-errors = []
30
32
31
33
[dependencies]
34
bitflags = "1.3.1"
-log = { version = "0.4.5", default-features = false }
35
+log = { version = "0.4.17", default-features = false }
36
ucs2 = "0.3.2"
37
uefi-macros = "0.8.0"
38
uefi-macros/Cargo.toml
@@ -1,20 +1,17 @@
name = "uefi-macros"
version = "0.8.1"
-authors = ["Hadrien G. <knights_of_ni@gmx.com>"]
-description = "Procedural macros for the uefi-rs crate"
+description = "Procedural macros for the uefi-rs crate."
10
11
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" }
-
[lib]
proc-macro = true
uefi-services/Cargo.toml
@@ -3,16 +3,12 @@ name = "uefi-services"
version = "0.14.0"
authors = ["Gabriel Majeri <gabriel.majeri6@gmail.com>"]
-description = "Higher-level utilities for uefi-rs"
+description = "Higher-level utilities for the uefi-rs crate."
+readme = "README.md"
uefi = { version = "0.17.0", features = ["alloc"] }
uefi-services/README.md
@@ -0,0 +1,11 @@
+# uefi-services
+
+[](https://crates.io/crates/uefi-services)
+[](https://docs.rs/uefi-services)
+This crate enables you some convenience features on top of the
+[`uefi`](https://crates.io/crates/uefi) crate. It includes a panic handler, a logger, and
+a global allocator.
+`uefi-services` is part of the `uefi-rs` project. Please refer to
+<https://github.com/rust-osdev/uefi-rs/> for comprehensive documentation.
uefi-test-runner/Cargo.toml
@@ -1,15 +1,17 @@
name = "uefi-test-runner"
version = "0.2.0"
publish = false
uefi = { path = "..", features = ['exts'] }
uefi-services = { path = "../uefi-services" }
-log = { version = "0.4.11", default-features = false }
qemu-exit = "3.0.0"
uefi-test-runner/src/main.rs
@@ -99,7 +99,7 @@ fn check_screenshot(bt: &BootServices, name: &str) {
99
.open_protocol_exclusive::<Serial>(serial_handle)
100
.expect("Could not open serial protocol");
101
102
- // Set a large timeout to avoid problems with Travis
+ // Set a large timeout to avoid problems with CI
103
let mut io_mode = *serial.io_mode();
104
io_mode.timeout = 10_000_000;
105
serial
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments