Skip to content

Commit fb288c3

Browse files
committed
several unrelated cleanups
1 parent 3a42bd1 commit fb288c3

File tree

7 files changed

+35
-8
lines changed

7 files changed

+35
-8
lines changed

Diff for: .cargo/config renamed to .cargo/config.toml

File renamed without changes.

Diff for: Cargo.toml

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
[package]
22
name = "uefi"
33
version = "0.17.0"
4-
authors = ["Gabriel Majeri <[email protected]>"]
4+
authors = [
5+
"The Rust OSDev team",
6+
"Gabriel Majeri <[email protected]>",
7+
"Hadrien G <[email protected]>",
8+
"Nicholas Bishop <[email protected]>",
9+
"Philipp Schuster <[email protected]>",
10+
"Supdrewin <[email protected]>",
11+
"Tim Roberts <[email protected]>",
12+
]
513
readme = "README.md"
614
edition = "2021"
715
exclude = [
@@ -29,8 +37,8 @@ logger = []
2937
panic-on-logger-errors = []
3038

3139
[dependencies]
40+
log = { workspace = true }
3241
bitflags = "1.3.1"
33-
log = { version = "0.4.5", default-features = false }
3442
ucs2 = "0.3.2"
3543
uefi-macros = "0.8.0"
3644

@@ -43,6 +51,9 @@ members = [
4351
"xtask",
4452
]
4553

54+
[workspace.dependencies]
55+
log = { version = "0.4", default-features = false }
56+
4657
[patch.crates-io]
4758
uefi-macros = { path = "uefi-macros" }
4859
uefi-services = { path = "uefi-services" }

Diff for: uefi-macros/Cargo.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "uefi-macros"
33
version = "0.8.1"
4-
authors = ["Hadrien G. <[email protected]>"]
4+
authors = [
5+
"The Rust OSDev team",
6+
"Hadrien G. <[email protected]>"
7+
]
58
readme = "README.md"
69
edition = "2021"
710
description = "Procedural macros for the uefi-rs crate"
@@ -11,7 +14,6 @@ categories = ["embedded", "no-std", "api-bindings"]
1114
license = "MPL-2.0"
1215

1316
[badges]
14-
travis-ci = { repository = "rust-osdev/uefi-rs" }
1517
is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
1618
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }
1719

Diff for: uefi-services/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ repository = "https://github.com/rust-osdev/uefi-rs"
88
keywords = ["uefi", "efi"]
99
categories = ["embedded", "no-std", "api-bindings"]
1010
license = "MPL-2.0"
11+
readme = "README.md"
1112

1213
[badges]
13-
travis-ci = { repository = "rust-osdev/uefi-rs" }
1414
is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
1515
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }
1616

Diff for: uefi-services/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# uefi-services
2+
3+
[![Crates.io](https://img.shields.io/crates/v/uefi-services)](https://crates.io/crates/uefi-services)
4+
[![Docs.rs](https://docs.rs/uefi-macros/badge.svg)](https://docs.rs/uefi-services)
5+
6+
This crate enables you some convenience features on top of the
7+
[`uefi`](https://crates.io/crates/uefi) crate. It includes a panic handler, a logger, and
8+
a global allocator.
9+
10+
`uefi-services` is part of the `uefi-rs` project. Please refer to
11+
<https://github.com/rust-osdev/uefi-rs/> for comprehensive documentation.

Diff for: uefi-test-runner/Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
[package]
22
name = "uefi-test-runner"
33
version = "0.2.0"
4-
authors = ["Gabriel Majeri <[email protected]>"]
4+
authors = [
5+
"The Rust OSDev team",
6+
"Gabriel Majeri <[email protected]>"
7+
]
58
publish = false
69
edition = "2021"
710

811
[dependencies]
912
uefi = { path = "..", features = ['exts'] }
1013
uefi-services = { path = "../uefi-services" }
1114

12-
log = { version = "0.4.11", default-features = false }
15+
log = { workspace = true }
1316

1417
qemu-exit = "3.0.0"
1518

Diff for: uefi-test-runner/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ fn check_screenshot(bt: &BootServices, name: &str) {
9898
.open_protocol_exclusive::<Serial>(serial_handle)
9999
.expect("Could not open serial protocol");
100100

101-
// Set a large timeout to avoid problems with Travis
101+
// Set a large timeout to avoid problems with CI
102102
let mut io_mode = *serial.io_mode();
103103
io_mode.timeout = 10_000_000;
104104
serial

0 commit comments

Comments
 (0)