Skip to content

Commit 2045b1a

Browse files
committed
several unrelated cleanups
1 parent 3a42bd1 commit 2045b1a

File tree

7 files changed

+24
-8
lines changed

7 files changed

+24
-8
lines changed

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

File renamed without changes.

Diff for: Cargo.toml

+4-2
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 = [
@@ -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

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
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"
79
description = "Procedural macros for the uefi-rs crate"
@@ -11,7 +13,6 @@ categories = ["embedded", "no-std", "api-bindings"]
1113
license = "MPL-2.0"
1214

1315
[badges]
14-
travis-ci = { repository = "rust-osdev/uefi-rs" }
1516
is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
1617
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }
1718

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

+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
@@ -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)