|
10 | 10 | //! With `uefi`, you have the flexibility to just integrate selected types and
|
11 | 11 | //! abstractions into your project or to effortlessly create complete EFI
|
12 | 12 | //! 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 |
15 | 15 | //! gated behind an `unstable` Cargo feature flag.
|
16 | 16 | //!
|
17 | 17 | //! ## Example Use Cases
|
|
58 | 58 | //! that is yet far from being mature. As of Mid-2024, we recommend to use our
|
59 | 59 | //! `uefi` library in a `no_std` binary to create EFI images.
|
60 | 60 | //!
|
61 |
| -//! We will closely monitor the situation and update the documentation |
| 61 | +//! We will closely monitor the situation and update the documentation |
62 | 62 | //! accordingly, once the `std` implementation is more mature.
|
63 | 63 | //!
|
64 | 64 | //! ## `r-efi`
|
|
104 | 104 | //! protocol, and see the [`proto`] module for protocol implementations. New
|
105 | 105 | //! protocols can be defined with the [`unsafe_protocol`] macro.
|
106 | 106 | //!
|
107 |
| -//! ## Optional crate features |
| 107 | +//! ## Optional Cargo crate features |
108 | 108 | //!
|
109 | 109 | //! - `alloc`: Enable functionality requiring the [`alloc`] crate from
|
110 | 110 | //! the Rust standard library. For example, methods that return a
|
|
121 | 121 | //! that prints output to the UEFI console. No buffering is done; this
|
122 | 122 | //! is not a high-performance logger.
|
123 | 123 | //! - `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. |
126 | 124 | //! - `unstable`: Enable functionality that depends on [unstable
|
127 | 125 | //! features] in the nightly compiler.
|
128 | 126 | //! As example, in conjunction with the `alloc`-feature, this gate allows
|
|
0 commit comments