Skip to content

Commit f6cfd48

Browse files
phip1611nicholasbishop
authored andcommitted
several unrelated cleanups
1 parent df81abc commit f6cfd48

File tree

8 files changed

+21
-19
lines changed

8 files changed

+21
-19
lines changed

.cargo/config .cargo/config.toml

File renamed without changes.
File renamed without changes.

uefi-macros/Cargo.toml

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
[package]
22
name = "uefi-macros"
33
version = "0.9.0"
4-
authors = ["Hadrien G. <[email protected]>"]
4+
authors = ["The Rust OSDev team"]
55
readme = "README.md"
66
edition = "2021"
7-
description = "Procedural macros for the uefi-rs crate"
7+
description = "Procedural macros for the `uefi` crate."
88
repository = "https://github.com/rust-osdev/uefi-rs"
99
keywords = ["uefi", "efi"]
1010
categories = ["embedded", "no-std", "api-bindings"]
1111
license = "MPL-2.0"
1212

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-
1813
[lib]
1914
proc-macro = true
2015

uefi-services/Cargo.toml

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
[package]
22
name = "uefi-services"
33
version = "0.15.0"
4-
authors = ["Gabriel Majeri <[email protected]>"]
4+
authors = ["The Rust OSDev team"]
5+
readme = "README.md"
56
edition = "2021"
6-
description = "Higher-level utilities for uefi-rs"
7+
description = "Higher-level utilities for the `uefi` crate."
78
repository = "https://github.com/rust-osdev/uefi-rs"
89
keywords = ["uefi", "efi"]
910
categories = ["embedded", "no-std", "api-bindings"]
1011
license = "MPL-2.0"
1112

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" }
16-
1713
[dependencies]
1814
uefi = { version = "0.18.0", features = ["global_allocator"] }
1915
log = { version = "0.4.5", default-features = false }

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.

uefi-test-runner/Cargo.toml

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

88
[dependencies]
99
uefi = { path = "../uefi", features = ['alloc'] }
1010
uefi-services = { path = "../uefi-services" }
1111

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

1414
qemu-exit = "3.0.0"
1515

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

uefi/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "uefi"
33
version = "0.18.0"
4-
authors = ["Gabriel Majeri <[email protected]>"]
4+
authors = ["The Rust OSDev team"]
55
readme = "README.md"
66
edition = "2021"
7-
description = "Safe and easy-to-use wrapper for building UEFI apps"
7+
description = "Safe and easy-to-use wrapper for building UEFI apps."
88
repository = "https://github.com/rust-osdev/uefi-rs"
99
keywords = ["uefi", "efi"]
1010
categories = ["embedded", "no-std", "api-bindings"]

0 commit comments

Comments
 (0)