forked from openanolis/dbs-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (32 loc) · 787 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
33
34
[package]
name = "dbs-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dragonball = { git = "https://github.com/kata-containers/kata-containers", branch = "main", features = [
"virtio-blk",
"virtio-vsock",
"virtio-net",
"hotplug",
"dbs-upcall",
] }
clap = { version = "4.0.27", features = ["derive"] }
serde = "1.0.27"
serde_derive = "1.0.27"
libc = "0.2.39"
seccompiler = "0.2.0"
log = "0.4.14"
kvm-bindings = "0.6.0"
kvm-ioctls = "0.12.0"
thiserror = "1"
nix = "0.24.1"
anyhow = "1.0.61"
vmm-sys-util = "0.11.0"
slog = "2.7.0"
slog-term = "2.9.0"
slog-json = "2.6.1"
slog-scope = "4.4.0"
slog-stdlog = "4.1.1"
serde_json = "1.0.89"
crossbeam-channel = "0.5.8"