Skip to content

Commit c427782

Browse files
committed
vm-device: add vm-device crate to repo
Bring in the vm-device crate from CloudHypervisor. We will be using it for adding PCIe support. Signed-off-by: Babis Chalios <bchalios@amazon.es>
1 parent 87a7164 commit c427782

File tree

7 files changed

+689
-3
lines changed

7 files changed

+689
-3
lines changed

Cargo.lock

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/vm-device/Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
authors = ["The Cloud Hypervisor Authors"]
3+
edition = "2021"
4+
name = "vm-device"
5+
version = "0.1.0"
6+
7+
[features]
8+
default = []
9+
10+
[dependencies]
11+
anyhow = "1.0.94"
12+
serde = { version = "1.0.208", features = ["derive", "rc"] }
13+
vmm-sys-util = { version = "0.12.1", features = ["with-serde"] }
14+
thiserror = "2.0.6"

0 commit comments

Comments
 (0)