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"