Skip to content

Commit e406329

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

File tree

6 files changed

+35
-8
lines changed

6 files changed

+35
-8
lines changed

Cargo.toml

Lines changed: 13 additions & 2 deletions
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 <gabriel.majeri6@gmail.com>"]
4+
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+
]
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" }

uefi-macros/Cargo.toml

Lines changed: 4 additions & 2 deletions
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. <knights_of_ni@gmx.com>"]
4+
authors = [
5+
"The Rust OSDev team",
6+
"Hadrien G. <knights_of_ni@gmx.com>"
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

uefi-services/Cargo.toml

Lines changed: 1 addition & 1 deletion
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

uefi-services/README.md

Lines changed: 11 additions & 0 deletions
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.

uefi-test-runner/Cargo.toml

Lines changed: 5 additions & 2 deletions
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 <gabriel.majeri6@gmail.com>"]
4+
authors = [
5+
"The Rust OSDev team",
6+
"Gabriel Majeri <gabriel.majeri6@gmail.com>"
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

uefi-test-runner/src/main.rs

Lines changed: 1 addition & 1 deletion
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)