Skip to content

Commit 2e3d724

Browse files
committed
several unrelated cleanups
1 parent 4a18f1e commit 2e3d724

File tree

7 files changed

+27
-19
lines changed

7 files changed

+27
-19
lines changed

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

File renamed without changes.

Diff for: Cargo.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "uefi"
33
version = "0.17.0"
4-
authors = ["Gabriel Majeri <[email protected]>"]
4+
authors = [
5+
"The Rust OSDev team"
6+
]
57
readme = "README.md"
68
edition = "2021"
79
exclude = [
@@ -12,7 +14,7 @@ exclude = [
1214
"uefi-test-runner/**",
1315
"xtask/**",
1416
]
15-
description = "Safe and easy-to-use wrapper for building UEFI apps"
17+
description = "Safe and easy-to-use wrapper for building UEFI apps."
1618
repository = "https://github.com/rust-osdev/uefi-rs"
1719
keywords = ["uefi", "efi"]
1820
categories = ["embedded", "no-std", "api-bindings"]
@@ -30,7 +32,7 @@ panic-on-logger-errors = []
3032

3133
[dependencies]
3234
bitflags = "1.3.1"
33-
log = { version = "0.4.5", default-features = false }
35+
log = { version = "0.4.17", default-features = false }
3436
ucs2 = "0.3.2"
3537
uefi-macros = "0.8.0"
3638

Diff for: uefi-macros/Cargo.toml

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
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+
]
57
readme = "README.md"
68
edition = "2021"
7-
description = "Procedural macros for the uefi-rs crate"
9+
description = "Procedural macros for the uefi-rs crate."
810
repository = "https://github.com/rust-osdev/uefi-rs"
911
keywords = ["uefi", "efi"]
1012
categories = ["embedded", "no-std", "api-bindings"]
1113
license = "MPL-2.0"
1214

13-
[badges]
14-
travis-ci = { repository = "rust-osdev/uefi-rs" }
15-
is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
16-
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }
17-
1815
[lib]
1916
proc-macro = true
2017

Diff for: uefi-services/Cargo.toml

+2-6
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,12 @@ name = "uefi-services"
33
version = "0.14.0"
44
authors = ["Gabriel Majeri <[email protected]>"]
55
edition = "2021"
6-
description = "Higher-level utilities for uefi-rs"
6+
description = "Higher-level utilities for the uefi-rs crate."
77
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-
12-
[badges]
13-
travis-ci = { repository = "rust-osdev/uefi-rs" }
14-
is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
15-
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }
11+
readme = "README.md"
1612

1713
[dependencies]
1814
uefi = { version = "0.17.0", features = ["alloc"] }

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
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+
]
57
publish = false
68
edition = "2021"
79

810
[dependencies]
911
uefi = { path = "..", features = ['exts'] }
1012
uefi-services = { path = "../uefi-services" }
1113

12-
log = { version = "0.4.11", default-features = false }
14+
log = { version = "0.4.17", default-features = false }
1315

1416
qemu-exit = "3.0.0"
1517

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

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

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

0 commit comments

Comments
 (0)