forked from virt-do/lumper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 1.05 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
[package]
name = "lumper"
version = "0.1.0"
edition = "2021"
[dependencies]
epoll = "4.3.1"
kvm-bindings = { version = "0.6.0", features = ["fam-wrappers"] }
kvm-ioctls = "0.15.0"
libc = "0.2.91"
linux-loader = { version = "0.10.0", features = ["bzimage", "elf"] }
vm-memory = { version = "0.13.1", features = ["backend-mmap"] }
vmm-sys-util = "0.11.1"
virtio-bindings = "0.2.0"
cidr = "0.2.1"
log = "0.4.17"
# vm-device is not yet published on crates.io.
# To make sure that breaking changes to vm-device are not breaking the
# vm-vcpu build, we're using a fixed revision.
vm-device = { git = "https://github.com/lucido-simon/vm-device", rev = "21a242f" }
virtio-device = { git = "https://github.com/rust-vmm/vm-virtio", rev = "f69ec8a" }
virtio-queue = { git = "https://github.com/rust-vmm/vm-virtio", rev = "f69ec8a" }
vm-superio = "0.7.0"
serde_json = "1.0.94"
serde = { version = "1.0.126", features = ["derive"] }
[[example]]
name = "lumper"
path = "src/example.rs"
[dev-dependencies]
clap = { version = "4.1.4", features = ["derive"] }
env_logger = "0.10.0"