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 3a42bd1 commit e406329Copy full SHA for e406329
Cargo.toml
@@ -1,7 +1,15 @@
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
+ "Hadrien G <knights_of_ni@gmx.com>",
7
+ "Gabriel Majeri <gabriel.majeri6@gmail.com>",
8
+ "Nicholas Bishop <nbishop@nbishop.net>",
9
+ "Philipp Schuster <phip1611@gmail.com>",
10
+ "Supdrewin <supdrewin@outlook.com>",
11
+ "Tim Roberts <tim@timroberts.dev>",
12
+]
13
readme = "README.md"
14
edition = "2021"
15
exclude = [
@@ -29,8 +37,8 @@ logger = []
29
37
panic-on-logger-errors = []
30
38
31
39
[dependencies]
40
+log = { workspace = true }
32
41
bitflags = "1.3.1"
33
-log = { version = "0.4.5", default-features = false }
34
42
ucs2 = "0.3.2"
35
43
uefi-macros = "0.8.0"
36
44
@@ -43,6 +51,9 @@ members = [
51
"xtask",
52
]
45
53
54
+[workspace.dependencies]
55
+log = { version = "0.4", default-features = false }
56
+
46
57
[patch.crates-io]
47
58
uefi-macros = { path = "uefi-macros" }
48
59
uefi-services = { path = "uefi-services" }
uefi-macros/Cargo.toml
@@ -1,7 +1,10 @@
name = "uefi-macros"
version = "0.8.1"
-authors = ["Hadrien G. <knights_of_ni@gmx.com>"]
+ "Hadrien G. <knights_of_ni@gmx.com>"
description = "Procedural macros for the uefi-rs crate"
@@ -11,7 +14,6 @@ categories = ["embedded", "no-std", "api-bindings"]
license = "MPL-2.0"
16
[badges]
-travis-ci = { repository = "rust-osdev/uefi-rs" }
17
is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
18
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }
19
uefi-services/Cargo.toml
@@ -8,9 +8,9 @@ repository = "https://github.com/rust-osdev/uefi-rs"
keywords = ["uefi", "efi"]
categories = ["embedded", "no-std", "api-bindings"]
+readme = "README.md"
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,18 @@
name = "uefi-test-runner"
version = "0.2.0"
+ "Gabriel Majeri <gabriel.majeri6@gmail.com>"
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
@@ -98,7 +98,7 @@ fn check_screenshot(bt: &BootServices, name: &str) {
98
.open_protocol_exclusive::<Serial>(serial_handle)
99
.expect("Could not open serial protocol");
100
101
- // Set a large timeout to avoid problems with Travis
+ // Set a large timeout to avoid problems with CI
102
let mut io_mode = *serial.io_mode();
103
io_mode.timeout = 10_000_000;
104
serial
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments