We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc53255 commit cee3d77Copy full SHA for cee3d77
uefi-services/src/lib.rs
@@ -14,6 +14,16 @@
14
//! Library code can simply use global UEFI functions
15
//! through the reference provided by `system_table`.
16
//!
17
+//! ## Optional crate features
18
+//!
19
+//! - `logger` (enabled by default): Initialize a global logger.
20
+//! - `panic_handler` (enabled by default): Register a panic handler. A
21
+//! panic handler must be provided for your program to compile, but
22
+//! you can choose to provide your own if you don't want to use this
23
+//! one.
24
+//! - `qemu`: On x86_64, make qemu exit with code 3 if a panic
25
+//! occurs. This feature assumes the program is running under QEMU.
26
27
//! [`exit_boot_services`]: uefi::table::SystemTable::exit_boot_services
28
29
#![no_std]
0 commit comments