From dac6dbdfa30d4f81d602548096b990505279abbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Mon, 28 Aug 2023 10:47:14 +0200 Subject: [PATCH] refactor(hermit): sort Cargo.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- hermit/Cargo.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/hermit/Cargo.toml b/hermit/Cargo.toml index 6a075dab6..8075d5f6b 100644 --- a/hermit/Cargo.toml +++ b/hermit/Cargo.toml @@ -5,28 +5,29 @@ authors = [ "Stefan Lankes ", "Martin Kröning ", ] -license = "MIT OR Apache-2.0" +edition = "2021" description = "The Hermit unikernel for Rust." repository = "https://github.com/hermitcore/hermit-rs" +license = "MIT OR Apache-2.0" keywords = ["unikernel", "libos"] categories = ["os"] links = "hermit" -edition = "2021" [features] default = [ "acpi", + "dhcpv4", + "fs", + "fsgsbase", "pci", "pci-ids", "smp", - "fsgsbase", "tcp", - "dhcpv4", - "fs", ] acpi = [] dhcpv4 = [] +fs = [] fsgsbase = [] # Build the kernel with function instrument code for mcount-based tracing @@ -38,14 +39,13 @@ pci-ids = ["pci"] # Enables -Z randomize-layout in the kernel randomize-layout = [] +# if this feature isn't set, the Virtio interface will be used +rtl8139 = ["tcp", "pci"] + smp = [] tcp = [] trace = [] vga = [] -fs = [] - -# if this feature isn't set, the Virtio interface will be used -rtl8139 = ["tcp", "pci"] [build-dependencies] flate2 = "1"