2020-07-14 09:43:33 +00:00
|
|
|
[package]
|
2023-07-12 02:24:28 +00:00
|
|
|
name = "block"
|
2020-07-14 09:43:33 +00:00
|
|
|
version = "0.1.0"
|
2022-04-08 15:11:04 +00:00
|
|
|
edition = "2021"
|
2023-07-12 02:24:28 +00:00
|
|
|
authors = ["The Cloud Hypervisor Authors", "The Chromium OS Authors"]
|
2020-07-14 09:43:33 +00:00
|
|
|
|
2020-08-03 06:32:28 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2023-07-10 09:55:55 +00:00
|
|
|
io_uring = ["dep:io-uring"]
|
2020-08-03 06:32:28 +00:00
|
|
|
|
2020-07-14 09:43:33 +00:00
|
|
|
[dependencies]
|
2023-07-12 02:24:28 +00:00
|
|
|
byteorder = "1.4.3"
|
|
|
|
crc32c = "0.6.3"
|
2023-07-31 23:41:19 +00:00
|
|
|
io-uring = { version = "0.6.0", optional = true }
|
2023-08-14 23:59:13 +00:00
|
|
|
libc = "0.2.147"
|
2022-05-02 23:56:28 +00:00
|
|
|
log = "0.4.17"
|
2023-08-02 23:05:18 +00:00
|
|
|
remain = "0.2.11"
|
2023-01-10 12:45:30 +00:00
|
|
|
smallvec = "1.10.0"
|
2023-05-23 23:58:01 +00:00
|
|
|
thiserror = "1.0.40"
|
2023-07-12 02:24:28 +00:00
|
|
|
uuid = { version = "1.3.4", features = ["v4"] }
|
2023-03-24 23:04:12 +00:00
|
|
|
versionize = "0.1.10"
|
2021-05-06 13:34:31 +00:00
|
|
|
versionize_derive = "0.1.4"
|
2023-02-21 23:58:46 +00:00
|
|
|
virtio-bindings = { version = "0.2.0", features = ["virtio-v5_0_0"] }
|
build: Bulk update rust-vmm dependencies
Bump to the latest rust-vmm crates, including vm-memory, vfio,
vfio-bindings, vfio-user, virtio-bindings, virtio-queue, linux-loader,
vhost, and vhost-user-backend,
Signed-off-by: Bo Chen <chen.bo@intel.com>
2023-05-19 16:12:25 +00:00
|
|
|
virtio-queue = "0.8.0"
|
|
|
|
vm-memory = { version = "0.11.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
2020-07-27 13:58:53 +00:00
|
|
|
vm-virtio = { path = "../vm-virtio" }
|
2022-11-28 13:08:13 +00:00
|
|
|
vmm-sys-util = "0.11.0"
|