Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

several unrelated cleanups #562

Merged
merged 1 commit into from
Nov 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
9 changes: 2 additions & 7 deletions uefi-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
10 changes: 3 additions & 7 deletions uefi-services/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 }
Expand Down
11 changes: 11 additions & 0 deletions uefi-services/README.md
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions uefi-test-runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[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"

[dependencies]
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"

Expand Down
2 changes: 1 addition & 1 deletion uefi-test-runner/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions uefi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down