forked from hermit-os/hermit-entry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 932 Bytes
/
Cargo.toml
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
[package]
name = "hermit-entry"
version = "0.9.9"
authors = ["Martin Kröning <[email protected]>"]
edition = "2021"
description = "Hermit's loading and entry API."
repository = "https://github.com/hermitcore/hermit-entry"
license = "MIT OR Apache-2.0"
keywords = ["hermit", "unikernel"]
categories = ["api-bindings", "no-std", "virtualization"]
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-unknown-none"
targets = [
"x86_64-unknown-none",
"aarch64-unknown-none-softfloat",
"riscv64imac-unknown-none-elf",
]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
align-address = "0.1"
goblin = { version = "0.7", default-features = false, features = ["elf64"], optional = true }
log = { version = "0.4", optional = true }
plain = { version = "0.2", optional = true }
time = { version = "0.3", default-features = false }
[features]
default = []
loader = ["log", "goblin", "plain"]
kernel = []