Skip to content

Commit 5d2c998

Browse files
committed
uefi: remove documentation about already removed feature
1 parent 64686e8 commit 5d2c998

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

uefi/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ repository.workspace = true
1616
rust-version.workspace = true
1717

1818
[features]
19+
# KEEP THIS FEATURE LIST IN SYNC WITH lib.rs!
1920
default = [ "log-debugcon" ]
2021
alloc = []
2122

uefi/src/lib.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
//! With `uefi`, you have the flexibility to just integrate selected types and
1111
//! abstractions into your project or to effortlessly create complete EFI
1212
//! images, addressing the entire spectrum of your development needs.
13-
//!
14-
//! `uefi` works with stable Rust, but additional nightly-only features are
13+
//!
14+
//! `uefi` works with stable Rust, but additional nightly-only features are
1515
//! gated behind an `unstable` Cargo feature flag.
1616
//!
1717
//! ## Example Use Cases
@@ -58,7 +58,7 @@
5858
//! that is yet far from being mature. As of Mid-2024, we recommend to use our
5959
//! `uefi` library in a `no_std` binary to create EFI images.
6060
//!
61-
//! We will closely monitor the situation and update the documentation
61+
//! We will closely monitor the situation and update the documentation
6262
//! accordingly, once the `std` implementation is more mature.
6363
//!
6464
//! ## `r-efi`
@@ -104,7 +104,7 @@
104104
//! protocol, and see the [`proto`] module for protocol implementations. New
105105
//! protocols can be defined with the [`unsafe_protocol`] macro.
106106
//!
107-
//! ## Optional crate features
107+
//! ## Optional Cargo crate features
108108
//!
109109
//! - `alloc`: Enable functionality requiring the [`alloc`] crate from
110110
//! the Rust standard library. For example, methods that return a
@@ -121,8 +121,6 @@
121121
//! that prints output to the UEFI console. No buffering is done; this
122122
//! is not a high-performance logger.
123123
//! - `panic_handler`: Add a default panic handler that logs to `stdout`.
124-
//! - `panic-on-logger-errors` (enabled by default): Panic if a text
125-
//! output error occurs in the logger.
126124
//! - `unstable`: Enable functionality that depends on [unstable
127125
//! features] in the nightly compiler.
128126
//! As example, in conjunction with the `alloc`-feature, this gate allows

0 commit comments

Comments
 (0)