mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 13:45:20 +00:00
deps: Bump vm-memory to 0.7.0
Updating Cloud Hypervisor to rely on vm-memory version 0.7.0. Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
parent
8737ca4d45
commit
89af7dcb2b
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -1337,9 +1337,9 @@ source = "git+https://github.com/rust-vmm/vm-fdt?branch=main#9cfa0c8d7c3032f7958
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "vm-memory"
|
name = "vm-memory"
|
||||||
version = "0.6.0"
|
version = "0.7.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "0a8ebcb86ca457f9d6e14cf97009f679952eba42f0113de5db596e514cd0e43b"
|
checksum = "339d4349c126fdcd87e034631d7274370cf19eb0e87b33166bcd956589fc72c5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
"libc",
|
"libc",
|
||||||
|
@ -28,7 +28,7 @@ signal-hook = "0.3.13"
|
|||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
vmm = { path = "vmm" }
|
vmm = { path = "vmm" }
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
vm-memory = "0.6.0"
|
vm-memory = "0.7.0"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
clap = { version = "2.34.0", features = ["wrap_help"] }
|
clap = { version = "2.34.0", features = ["wrap_help"] }
|
||||||
|
@ -5,4 +5,4 @@ authors = ["The Cloud Hypervisor Authors"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
vm-memory = "0.6.0"
|
vm-memory = "0.7.0"
|
||||||
|
@ -22,7 +22,7 @@ serde_derive = "1.0.132"
|
|||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
versionize = "0.1.6"
|
versionize = "0.1.6"
|
||||||
versionize_derive = "0.1.4"
|
versionize_derive = "0.1.4"
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-bitmap"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-bitmap"] }
|
||||||
vm-migration = { path = "../vm-migration" }
|
vm-migration = { path = "../vm-migration" }
|
||||||
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
|
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ versionize_derive = "0.1.4"
|
|||||||
vhdx = { path = "../vhdx" }
|
vhdx = { path = "../vhdx" }
|
||||||
virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
|
virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
|
||||||
virtio-queue = { path = "../virtio-queue" }
|
virtio-queue = { path = "../virtio-queue" }
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
||||||
vm-virtio = { path = "../vm-virtio" }
|
vm-virtio = { path = "../vm-virtio" }
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ log = "0.4.14"
|
|||||||
versionize = "0.1.6"
|
versionize = "0.1.6"
|
||||||
versionize_derive = "0.1.4"
|
versionize_derive = "0.1.4"
|
||||||
vm-device = { path = "../vm-device" }
|
vm-device = { path = "../vm-device" }
|
||||||
vm-memory = "0.6.0"
|
vm-memory = "0.7.0"
|
||||||
vm-migration = { path = "../vm-migration" }
|
vm-migration = { path = "../vm-migration" }
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
|
|
||||||
|
4
fuzz/Cargo.lock
generated
4
fuzz/Cargo.lock
generated
@ -836,9 +836,9 @@ source = "git+https://github.com/rust-vmm/vm-fdt?branch=main#720e48e435b791ec6cb
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "vm-memory"
|
name = "vm-memory"
|
||||||
version = "0.6.0"
|
version = "0.7.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "0a8ebcb86ca457f9d6e14cf97009f679952eba42f0113de5db596e514cd0e43b"
|
checksum = "339d4349c126fdcd87e034631d7274370cf19eb0e87b33166bcd956589fc72c5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
"libc",
|
"libc",
|
||||||
|
@ -19,7 +19,7 @@ virtio-devices = { path = "../virtio-devices" }
|
|||||||
virtio-queue = { path = "../virtio-queue" }
|
virtio-queue = { path = "../virtio-queue" }
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
vm-virtio = { path = "../vm-virtio" }
|
vm-virtio = { path = "../vm-virtio" }
|
||||||
vm-memory = "0.6.0"
|
vm-memory = "0.7.0"
|
||||||
|
|
||||||
[dependencies.cloud-hypervisor]
|
[dependencies.cloud-hypervisor]
|
||||||
path = ".."
|
path = ".."
|
||||||
|
@ -23,7 +23,7 @@ mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "main", optio
|
|||||||
serde = { version = "1.0.132", features = ["rc"] }
|
serde = { version = "1.0.132", features = ["rc"] }
|
||||||
serde_derive = "1.0.132"
|
serde_derive = "1.0.132"
|
||||||
serde_json = "1.0.73"
|
serde_json = "1.0.73"
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] }
|
||||||
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
|
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86]
|
[target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86]
|
||||||
|
@ -16,7 +16,7 @@ versionize = "0.1.6"
|
|||||||
versionize_derive = "0.1.4"
|
versionize_derive = "0.1.4"
|
||||||
virtio-bindings = "0.1.0"
|
virtio-bindings = "0.1.0"
|
||||||
virtio-queue = { path = "../virtio-queue" }
|
virtio-queue = { path = "../virtio-queue" }
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
||||||
vm-virtio = { path = "../vm-virtio" }
|
vm-virtio = { path = "../vm-virtio" }
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ versionize = "0.1.6"
|
|||||||
versionize_derive = "0.1.4"
|
versionize_derive = "0.1.4"
|
||||||
vm-allocator = { path = "../vm-allocator" }
|
vm-allocator = { path = "../vm-allocator" }
|
||||||
vm-device = { path = "../vm-device" }
|
vm-device = { path = "../vm-device" }
|
||||||
vm-memory = "0.6.0"
|
vm-memory = "0.7.0"
|
||||||
vm-migration = { path = "../vm-migration" }
|
vm-migration = { path = "../vm-migration" }
|
||||||
|
|
||||||
[dependencies.vfio-bindings]
|
[dependencies.vfio-bindings]
|
||||||
|
@ -12,7 +12,7 @@ serde = {version = ">=1.0.27", features = ["rc"] }
|
|||||||
serde_derive = ">=1.0.27"
|
serde_derive = ">=1.0.27"
|
||||||
serde_json = ">=1.0.9"
|
serde_json = ">=1.0.9"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] }
|
||||||
vmm-sys-util = ">=0.3.1"
|
vmm-sys-util = ">=0.3.1"
|
||||||
|
|
||||||
[dependencies.vfio-bindings]
|
[dependencies.vfio-bindings]
|
||||||
|
@ -13,7 +13,7 @@ libc = "0.2.112"
|
|||||||
log = "0.4.14"
|
log = "0.4.14"
|
||||||
virtio-bindings = "0.1.0"
|
virtio-bindings = "0.1.0"
|
||||||
virtio-queue = { path = "../virtio-queue" }
|
virtio-queue = { path = "../virtio-queue" }
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-bitmap"] }
|
vm-memory = { version = "0.7.0", features = ["backend-bitmap"] }
|
||||||
vm-virtio = { path = "../vm-virtio" }
|
vm-virtio = { path = "../vm-virtio" }
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
vhost = { version = "0.3.0", features = ["vhost-user-slave"] }
|
vhost = { version = "0.3.0", features = ["vhost-user-slave"] }
|
||||||
|
@ -16,5 +16,5 @@ qcow = { path = "../qcow" }
|
|||||||
vhost_user_backend = { path = "../vhost_user_backend" }
|
vhost_user_backend = { path = "../vhost_user_backend" }
|
||||||
vhost = { version = "0.3.0", features = ["vhost-user-slave"] }
|
vhost = { version = "0.3.0", features = ["vhost-user-slave"] }
|
||||||
virtio-bindings = "0.1.0"
|
virtio-bindings = "0.1.0"
|
||||||
vm-memory = "0.6.0"
|
vm-memory = "0.7.0"
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
|
@ -15,5 +15,5 @@ option_parser = { path = "../option_parser" }
|
|||||||
vhost_user_backend = { path = "../vhost_user_backend" }
|
vhost_user_backend = { path = "../vhost_user_backend" }
|
||||||
vhost = { version = "0.3.0", features = ["vhost-user-slave"] }
|
vhost = { version = "0.3.0", features = ["vhost-user-slave"] }
|
||||||
virtio-bindings = "0.1.0"
|
virtio-bindings = "0.1.0"
|
||||||
vm-memory = "0.6.0"
|
vm-memory = "0.7.0"
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
|
@ -33,7 +33,7 @@ virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
|
|||||||
virtio-queue = { path = "../virtio-queue" }
|
virtio-queue = { path = "../virtio-queue" }
|
||||||
vm-allocator = { path = "../vm-allocator" }
|
vm-allocator = { path = "../vm-allocator" }
|
||||||
vm-device = { path = "../vm-device" }
|
vm-device = { path = "../vm-device" }
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
||||||
vm-migration = { path = "../vm-migration" }
|
vm-migration = { path = "../vm-migration" }
|
||||||
vm-virtio = { path = "../vm-virtio" }
|
vm-virtio = { path = "../vm-virtio" }
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
|
@ -13,6 +13,6 @@ edition = "2018"
|
|||||||
test-utils = []
|
test-utils = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
vm-memory = "0.6.0"
|
vm-memory = "0.7.0"
|
||||||
vmm-sys-util = ">=0.8.0"
|
vmm-sys-util = ">=0.8.0"
|
||||||
log = ">=0.4.6"
|
log = ">=0.4.6"
|
@ -6,5 +6,5 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2.112"
|
libc = "0.2.112"
|
||||||
vm-memory = "0.6.0"
|
vm-memory = "0.7.0"
|
||||||
arch = { path = "../arch" }
|
arch = { path = "../arch" }
|
||||||
|
@ -16,6 +16,6 @@ serde = { version = "1.0.132", features = ["rc"] }
|
|||||||
serde_derive = "1.0.132"
|
serde_derive = "1.0.132"
|
||||||
serde_json = "1.0.73"
|
serde_json = "1.0.73"
|
||||||
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "main", default-features = false }
|
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "main", default-features = false }
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap"] }
|
||||||
vmm-sys-util = "0.9.0"
|
vmm-sys-util = "0.9.0"
|
||||||
|
|
||||||
|
@ -12,4 +12,4 @@ serde_derive = "1.0.132"
|
|||||||
serde_json = "1.0.73"
|
serde_json = "1.0.73"
|
||||||
versionize = "0.1.6"
|
versionize = "0.1.6"
|
||||||
versionize_derive = "0.1.4"
|
versionize_derive = "0.1.4"
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] }
|
||||||
|
@ -11,4 +11,4 @@ default = []
|
|||||||
log = "0.4.14"
|
log = "0.4.14"
|
||||||
virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
|
virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
|
||||||
virtio-queue = { path = "../virtio-queue" }
|
virtio-queue = { path = "../virtio-queue" }
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
||||||
|
@ -50,7 +50,7 @@ virtio-devices = { path = "../virtio-devices" }
|
|||||||
virtio-queue = { path = "../virtio-queue" }
|
virtio-queue = { path = "../virtio-queue" }
|
||||||
vm-allocator = { path = "../vm-allocator" }
|
vm-allocator = { path = "../vm-allocator" }
|
||||||
vm-device = { path = "../vm-device" }
|
vm-device = { path = "../vm-device" }
|
||||||
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
|
||||||
vm-migration = { path = "../vm-migration" }
|
vm-migration = { path = "../vm-migration" }
|
||||||
vm-virtio = { path = "../vm-virtio" }
|
vm-virtio = { path = "../vm-virtio" }
|
||||||
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
|
vmm-sys-util = { version = "0.9.0", features = ["with-serde"] }
|
||||||
|
Loading…
Reference in New Issue
Block a user