Expand Cargo features to separate lines.

This is much more diff- and by extension rebase-friendly.
This commit is contained in:
4lDO2
2024-09-08 00:09:49 +02:00
parent 4626c74b78
commit 9673fa26b6
+8 -1
View File
@@ -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 = []