Skip to content

Commit 7fa020f

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 c4e3bf8 commit 7fa020f

File tree

7 files changed

+740
-14
lines changed

7 files changed

+740
-14
lines changed

Cargo.lock

Lines changed: 32 additions & 11 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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[package]
2+
authors = ["The Cloud Hypervisor Authors"]
3+
edition = "2021"
4+
name = "vm-device"
5+
version = "0.1.0"
6+
license = "Apache-2.0 AND BSD-3-Clause"
7+
8+
[lib]
9+
bench = false
10+
11+
[features]
12+
default = []
13+
14+
[dependencies]
15+
serde = { version = "1.0.208", features = ["derive", "rc"] }
16+
vmm-sys-util = { version = "0.13.0", features = ["with-serde"] }

0 commit comments

Comments
 (0)