several unrelated cleanups

This commit is contained in:
Philipp Schuster
2022-11-12 16:23:13 +01:00
committed by Nicholas Bishop
parent df81abc755
commit f6cfd484dc
8 changed files with 21 additions and 19 deletions
+2 -7
View File
@@ -1,20 +1,15 @@
[package]
name = "uefi-macros"
version = "0.9.0"
authors = ["Hadrien G. <knights_of_ni@gmx.com>"]
authors = ["The Rust OSDev team"]
readme = "README.md"
edition = "2021"
description = "Procedural macros for the uefi-rs crate"
description = "Procedural macros for the `uefi` crate."
repository = "https://github.com/rust-osdev/uefi-rs"
keywords = ["uefi", "efi"]
categories = ["embedded", "no-std", "api-bindings"]
license = "MPL-2.0"
[badges]
travis-ci = { repository = "rust-osdev/uefi-rs" }
is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }
[lib]
proc-macro = true
+3 -7
View File
@@ -1,19 +1,15 @@
[package]
name = "uefi-services"
version = "0.15.0"
authors = ["Gabriel Majeri <gabriel.majeri6@gmail.com>"]
authors = ["The Rust OSDev team"]
readme = "README.md"
edition = "2021"
description = "Higher-level utilities for uefi-rs"
description = "Higher-level utilities for the `uefi` crate."
repository = "https://github.com/rust-osdev/uefi-rs"
keywords = ["uefi", "efi"]
categories = ["embedded", "no-std", "api-bindings"]
license = "MPL-2.0"
[badges]
travis-ci = { repository = "rust-osdev/uefi-rs" }
is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }
[dependencies]
uefi = { version = "0.18.0", features = ["global_allocator"] }
log = { version = "0.4.5", default-features = false }
+11
View File
@@ -0,0 +1,11 @@
# uefi-services
[![Crates.io](https://img.shields.io/crates/v/uefi-services)](https://crates.io/crates/uefi-services)
[![Docs.rs](https://docs.rs/uefi-macros/badge.svg)](https://docs.rs/uefi-services)
This crate enables you some convenience features on top of the
[`uefi`](https://crates.io/crates/uefi) crate. It includes a panic handler, a logger, and
a global allocator.
`uefi-services` is part of the `uefi-rs` project. Please refer to
<https://github.com/rust-osdev/uefi-rs/> for comprehensive documentation.
+2 -2
View File
@@ -1,7 +1,7 @@
[package]
name = "uefi-test-runner"
version = "0.2.0"
authors = ["Gabriel Majeri <gabriel.majeri6@gmail.com>"]
authors = ["The Rust OSDev team"]
publish = false
edition = "2021"
@@ -9,7 +9,7 @@ edition = "2021"
uefi = { path = "../uefi", features = ['alloc'] }
uefi-services = { path = "../uefi-services" }
log = { version = "0.4.11", default-features = false }
log = { version = "0.4.17", default-features = false }
qemu-exit = "3.0.0"
+1 -1
View File
@@ -99,7 +99,7 @@ fn check_screenshot(bt: &BootServices, name: &str) {
.open_protocol_exclusive::<Serial>(serial_handle)
.expect("Could not open serial protocol");
// Set a large timeout to avoid problems with Travis
// Set a large timeout to avoid problems with CI
let mut io_mode = *serial.io_mode();
io_mode.timeout = 10_000_000;
serial
+2 -2
View File
@@ -1,10 +1,10 @@
[package]
name = "uefi"
version = "0.18.0"
authors = ["Gabriel Majeri <gabriel.majeri6@gmail.com>"]
authors = ["The Rust OSDev team"]
readme = "README.md"
edition = "2021"
description = "Safe and easy-to-use wrapper for building UEFI apps"
description = "Safe and easy-to-use wrapper for building UEFI apps."
repository = "https://github.com/rust-osdev/uefi-rs"
keywords = ["uefi", "efi"]
categories = ["embedded", "no-std", "api-bindings"]