-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
45 lines (44 loc) · 1.21 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "runh"
authors = [
"Stefan Lankes <slankes@eonerc.rwth-aachen>",
"Jonas Schroeder <jonas.schroeder1@rwth-aachen>",
]
license = "MIT/Apache-2.0"
version = "0.1.0"
keywords = ["oci", "container", "unikernel"]
categories = ["operating system", "container", "virtualization"]
readme = "README.md"
edition = "2018"
description = "runh is a CLI tool for spawning and running RustyHermit containers."
[dependencies]
capctl = "0.2"
clap = { version = "4", features = ["wrap_help", "derive", "color", "cargo", "suggestions"] }
colour = "2.1"
command-fds = "0.3"
futures = "0.3"
getset = "0.1"
goblin = { version = "0.9", default-features = false, features = ["elf64", "elf32", "endian_fd"] }
libc = "0.2"
log = { version = "0.4", features = ["std"] }
netlink-packet-core = "0.7"
netlink-packet-route = "0.19"
nix = { version = "0.29", features = [
"hostname",
"ioctl",
"mount",
"sched",
"socket",
"term",
"ucontext",
"user",
"zerocopy",
] }
oci-spec = "0.7"
path-clean = "1.0"
procfs = { version = "0.17", default-features = false }
rtnetlink = "0.14"
serde_json = "1.0"
serde = "1.0"
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1.41", features = ["full"] }