From 9673fa26b6c03f422eb095012a77282c0c0ac9a2 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Sun, 8 Sep 2024 00:09:49 +0200 Subject: [PATCH] Expand Cargo features to separate lines. This is much more diff- and by extension rebase-friendly. --- Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 04001f2dee..3d891a35fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,14 @@ raw-cpuid = "10.2.0" x86 = { version = "0.47.0", default-features = false } [features] -default = ["acpi", "multi_core", "graphical_debug", "serial_debug", "self_modifying", "x86_kvm_pv"] +default = [ + "acpi", + "multi_core", + "graphical_debug", + "serial_debug", + "self_modifying", + "x86_kvm_pv", +] # Activates some limited code-overwriting optimizations, based on CPU features. self_modifying = []