mirror of
https://github.com/rust-osdev/uefi-rs
synced 2026-08-26 18:26:05 -04:00
uefi-services: remove again
Context: https://github.com/rust-osdev/uefi-rs/pull/1709
This commit is contained in:
parent
08176dff3e
commit
fe5491f6ae
8 changed files with 0 additions and 51 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -981,10 +981,6 @@ dependencies = [
|
|||
"uguid",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uefi-services"
|
||||
version = "0.26.0"
|
||||
|
||||
[[package]]
|
||||
name = "uefi-std-example"
|
||||
version = "0.1.0"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ members = [
|
|||
"uefi",
|
||||
"uefi-macros",
|
||||
"uefi-raw",
|
||||
"uefi-services",
|
||||
"uefi-std-example",
|
||||
"uefi-test-runner",
|
||||
"xtask",
|
||||
|
|
@ -30,7 +29,6 @@ uguid = "2.2.1"
|
|||
uefi = { path = "uefi" }
|
||||
uefi-macros = { path = "uefi-macros" }
|
||||
uefi-raw = { path = "uefi-raw" }
|
||||
uefi-services = { path = "uefi-services" }
|
||||
|
||||
# Enable optimization for xtask itself, not for its dependencies. This speeds up
|
||||
# OVMF prebuilt decompression without much increase in compilation time.
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
# uefi-services - 0.26 (2025-06-24)
|
||||
|
||||
## Changed
|
||||
- The deprecation warning was replaced with a `compile_error!` call to alert
|
||||
users to upgrade. `v0.25.0` can cause problems when used with `uefi` `>v0.25`.
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
[package]
|
||||
name = "uefi-services"
|
||||
version = "0.26.0"
|
||||
readme = "README.md"
|
||||
description = "Deprecated. Please migrate to `uefi::helpers`."
|
||||
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
keywords.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[dependencies]
|
||||
|
||||
[badges.maintenance]
|
||||
status = "deprecated"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
qemu = []
|
||||
panic_handler = []
|
||||
logger = []
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
# uefi-services
|
||||
|
||||
WARNING: `uefi-services` is deprecated. Functionality was moved to
|
||||
`uefi::helpers::init` in `uefi@v0.28.0`.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
fn main() {
|
||||
println!(
|
||||
"cargo:warning=`uefi-services` is deprecated. Functionality was moved to `uefi::helpers::init`."
|
||||
);
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
//! WARNING: `uefi-services` is deprecated. Functionality was moved to `uefi::helpers::init`.
|
||||
#![no_std]
|
||||
|
||||
compile_error!(
|
||||
"uefi-services is deprecated since v0.25 (April 2024). Please migrate to `uefi` >0.26. See CHANGELOG for migration guidance!"
|
||||
);
|
||||
|
|
@ -367,7 +367,6 @@ fn format_file_headers(fmt_opt: &FmtOpt) -> Result<()> {
|
|||
// This directory contains short code snippets used in `trybuild` tests,
|
||||
// no license needed.
|
||||
"uefi-macros/tests/ui/",
|
||||
"uefi-services",
|
||||
];
|
||||
|
||||
// Recursively get Rust files
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue