Skip to content

Commit

Permalink
refactor(hermit): sort Cargo.toml
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <martin.kroening@eonerc.rwth-aachen.de>
  • Loading branch information
mkroening committed Aug 28, 2023
1 parent 947fe7c commit dac6dbd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions hermit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,29 @@ authors = [
"Stefan Lankes <slankes@eonerc.rwth-aachen.de>",
"Martin Kröning <mkroening@posteo.net>",
]
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
Expand All @@ -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"
Expand Down

0 comments on commit dac6dbd

Please sign in to comment.