-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (82 loc) · 1.6 KB
/
Copy pathCargo.toml
File metadata and controls
88 lines (82 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "hermit"
version = "0.13.2"
authors = [
"Stefan Lankes <slankes@eonerc.rwth-aachen.de>",
"Martin Kröning <mkroening@posteo.net>",
]
edition = "2021"
description = "The Hermit unikernel for Rust."
repository = "https://github.com/hermit-os/hermit-rs"
license = "MIT OR Apache-2.0"
keywords = ["unikernel", "libos"]
categories = ["os"]
links = "hermit"
[dependencies]
hermit-abi = { version = "0.4", optional = true }
generic_once_cell = { version = "0.1", optional = true }
libm = { version = "0.2", optional = true }
spinning_top = { version = "0.3", optional = true }
take-static = { version = "0.1", optional = true }
talc = { version = "4.4", default-features = false, features = ["lock_api"], optional = true }
[features]
default = []
common-os = [
"dep:hermit-abi",
"dep:generic_once_cell",
"dep:libm",
"dep:spinning_top",
"dep:take-static",
"dep:talc",
]
## Links against libc.a.
libc = []
#! ### Kernel Features
#!
#! For details, see the kernel [docs].
#!
#! [docs]: https://hermit-os.github.io/kernel
masos = []
mman = []
newlib = []
uhyve = []
acpi = []
fsgsbase = []
pci = []
pci-ids = []
semihosting = []
smp = []
tcp = []
udp = []
dhcpv4 = []
dns = []
net-trace = []
write-pcap-file = []
virtio-net = []
rtl8139 = []
gem-net = []
virtio-console = []
virtio-fs = []
virtio-vsock = []
vga = []
idle-poll = []
alloc-stats = []
instrument-mcount = []
kernel-stack = []
randomize-layout = []
shell = []
strace = []
document-features = []
net = []
virtio = []
warn-prebuilt = []
console = []
fs = []
fuse = []
mmap = []
nostd = []
trace = []
vsock = []
[build-dependencies]
cc = "1"
home = "0.5"