From d5e1188b8eaa16f049be575e22de82aef19efe39 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Fri, 15 Mar 2024 09:55:27 +0100 Subject: [PATCH] Remove doc feature --- Cargo.toml | 1 - src/main.rs | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 88b5b41df7..592d8fb8bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,6 @@ default = ["acpi", "multi_core", "graphical_debug", "serial_debug", "self_modify self_modifying = [] acpi = [] -doc = [] graphical_debug = [] lpss_debug = [] multi_core = ["acpi"] diff --git a/src/main.rs b/src/main.rs index f6656cc1f3..005b10da59 100644 --- a/src/main.rs +++ b/src/main.rs @@ -98,7 +98,6 @@ mod debugger; mod devices; /// ELF file parsing -#[cfg(not(feature = "doc"))] mod elf; /// Event handling @@ -114,7 +113,7 @@ mod log; mod memory; /// Panic -#[cfg(not(any(feature = "doc", test)))] +#[cfg(not(test))] mod panic; mod percpu;