2021-06-04 11:42:36 +00:00
|
|
|
[package]
|
|
|
|
name = "vfio_user"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Cloud Hypervisor Authors"]
|
2022-04-08 15:11:04 +00:00
|
|
|
edition = "2021"
|
2021-06-04 11:42:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-05 23:03:41 +00:00
|
|
|
libc = "0.2.139"
|
2022-05-02 23:56:28 +00:00
|
|
|
log = "0.4.17"
|
2022-12-16 23:29:41 +00:00
|
|
|
serde = { version = "1.0.151", features = ["rc"] }
|
2022-12-07 17:39:14 +00:00
|
|
|
serde_derive = "1.0.149"
|
|
|
|
serde_json = "1.0.89"
|
2022-09-27 23:08:55 +00:00
|
|
|
thiserror = "1.0.37"
|
2022-12-07 17:39:14 +00:00
|
|
|
vfio-bindings = { git = "https://github.com/rust-vmm/vfio", branch = "main", features = ["fam-wrappers"] }
|
2022-11-28 13:08:13 +00:00
|
|
|
vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic"] }
|
2022-12-07 17:39:14 +00:00
|
|
|
vmm-sys-util = "0.11.0"
|