From 7d30baaecaa2575254dd15d12ba379fc7cf6adcc Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Wed, 22 May 2024 19:01:19 +0200 Subject: [PATCH 1/2] uefi-raw: decouple MSRV from workspace Usually, the MSRV of this will be much more releaxed. --- uefi-raw/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/uefi-raw/Cargo.toml b/uefi-raw/Cargo.toml index 682b9c342..ef18e36a3 100644 --- a/uefi-raw/Cargo.toml +++ b/uefi-raw/Cargo.toml @@ -10,7 +10,9 @@ edition.workspace = true keywords.workspace = true license.workspace = true repository.workspace = true -rust-version.workspace = true +# uefi-raw is much less likely to need the latest bleeding-edge features. +# Hence, it is okay to not use the workspace MSRV. +rust-version = "1.70" [dependencies] bitflags.workspace = true From f5022cbc84fb7a9e63497ee4b9bcc7e27f43f5aa Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Wed, 22 May 2024 19:01:44 +0200 Subject: [PATCH 2/2] uefi-raw: better description --- uefi-raw/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/uefi-raw/Cargo.toml b/uefi-raw/Cargo.toml index ef18e36a3..f5e5e4d5a 100644 --- a/uefi-raw/Cargo.toml +++ b/uefi-raw/Cargo.toml @@ -2,7 +2,11 @@ name = "uefi-raw" version = "0.5.2" readme = "README.md" -description = "Raw UEFI types" +description = """ +Raw UEFI types and bindings for protocols, boot, and runtime services. This can +serve as base for an UEFI firmware implementation or a high-level wrapper to +access UEFI functionality from an UEFI image. +""" authors.workspace = true categories.workspace = true