build: Use fixed versions in Cargo.toml files

This doesn't really affect the build as we ship a Cargo.lock with fixed
versions in. However for clarity it makes sense to use fixed versions
throughout and let dependabot update them.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2021-08-06 10:11:40 +01:00 committed by Sebastien Boeuf
parent b4f887ea80
commit f7f2f25a57
19 changed files with 103 additions and 91 deletions

View File

@ -5,4 +5,4 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
vmm-sys-util = "0.8.0" vmm-sys-util = "0.8.0"

View File

@ -11,19 +11,19 @@ tdx = []
[dependencies] [dependencies]
acpi_tables = { path = "../acpi_tables", optional = true } acpi_tables = { path = "../acpi_tables", optional = true }
anyhow = "1.0" anyhow = "1.0.42"
byteorder = "1.4.3" byteorder = "1.4.3"
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
libc = "0.2.98" libc = "0.2.98"
linux-loader = { version = "0.3.0", features = ["elf", "bzimage", "pe"] } linux-loader = { version = "0.3.0", features = ["elf", "bzimage", "pe"] }
log = "0.4.14" log = "0.4.14"
serde = {version = ">=1.0.27", features = ["rc"] } serde = { version = "1.0.127", features = ["rc"] }
thiserror = "1.0" thiserror = "1.0.26"
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.6.0", features = ["backend-mmap", "backend-bitmap"] }
vm-migration = { path = "../vm-migration" } vm-migration = { path = "../vm-migration" }
vmm-sys-util = { version = ">=0.5.0", features = ["with-serde"] } vmm-sys-util = { version = "0.8.0", features = ["with-serde"] }
[target.'cfg(target_arch = "aarch64")'.dependencies] [target.'cfg(target_arch = "aarch64")'.dependencies]
fdt_parser = { version = "0.1.3", package = 'fdt'} fdt_parser = { version = "0.1.3", package = 'fdt'}

View File

@ -9,15 +9,15 @@ default = []
io_uring = [] io_uring = []
[dependencies] [dependencies]
io-uring = ">=0.4.0" io-uring = "0.5.1"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
qcow = { path = "../qcow" } qcow = { path = "../qcow" }
thiserror = "1.0" thiserror = "1.0.26"
versionize = "0.1.6" versionize = "0.1.6"
versionize_derive = "0.1.4" versionize_derive = "0.1.4"
virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]} virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
vm-virtio = { path = "../vm-virtio" } vm-virtio = { path = "../vm-virtio" }
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"

View File

@ -6,11 +6,11 @@ edition = "2018"
[dependencies] [dependencies]
acpi_tables = { path = "../acpi_tables", optional = true } acpi_tables = { path = "../acpi_tables", optional = true }
anyhow = "1.0" anyhow = "1.0.42"
arch = { path = "../arch" } arch = { path = "../arch" }
bitflags = ">=1.2.1" bitflags = "1.2.1"
byteorder = "1.4.3" byteorder = "1.4.3"
epoll = ">=4.0.1" epoll = "4.3.1"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
versionize = "0.1.6" versionize = "0.1.6"
@ -18,7 +18,7 @@ versionize_derive = "0.1.4"
vm-device = { path = "../vm-device" } vm-device = { path = "../vm-device" }
vm-memory = "0.6.0" vm-memory = "0.6.0"
vm-migration = { path = "../vm-migration" } vm-migration = { path = "../vm-migration" }
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"
[features] [features]
default = [] default = []

View File

@ -6,6 +6,6 @@ edition = "2018"
[dependencies] [dependencies]
libc = "0.2.98" libc = "0.2.98"
serde = {version = ">=1.0.27", features = ["rc"] } serde = { version = "1.0.127", features = ["rc"] }
serde_derive = ">=1.0.27" serde_derive = "1.0.127"
serde_json = ">=1.0.9" serde_json = "1.0.66"

52
fuzz/Cargo.lock generated
View File

@ -6,7 +6,7 @@ version = 3
name = "acpi_tables" name = "acpi_tables"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"vm-memory", "vm-memory 0.6.0",
] ]
[[package]] [[package]]
@ -60,7 +60,7 @@ dependencies = [
"versionize", "versionize",
"versionize_derive", "versionize_derive",
"vm-fdt", "vm-fdt",
"vm-memory", "vm-memory 0.6.0",
"vm-migration", "vm-migration",
"vmm-sys-util", "vmm-sys-util",
] ]
@ -103,7 +103,7 @@ dependencies = [
"versionize", "versionize",
"versionize_derive", "versionize_derive",
"virtio-bindings", "virtio-bindings",
"vm-memory", "vm-memory 0.6.0",
"vm-virtio", "vm-virtio",
"vmm-sys-util", "vmm-sys-util",
] ]
@ -159,7 +159,7 @@ dependencies = [
"serde_json", "serde_json",
"signal-hook", "signal-hook",
"thiserror", "thiserror",
"vm-memory", "vm-memory 0.6.0",
"vmm", "vmm",
"vmm-sys-util", "vmm-sys-util",
] ]
@ -175,7 +175,7 @@ dependencies = [
"qcow", "qcow",
"seccomp", "seccomp",
"virtio-devices", "virtio-devices",
"vm-memory", "vm-memory 0.6.0",
"vm-virtio", "vm-virtio",
"vmm-sys-util", "vmm-sys-util",
] ]
@ -201,7 +201,7 @@ dependencies = [
"versionize", "versionize",
"versionize_derive", "versionize_derive",
"vm-device", "vm-device",
"vm-memory", "vm-memory 0.6.0",
"vm-migration", "vm-migration",
"vmm-sys-util", "vmm-sys-util",
] ]
@ -256,7 +256,7 @@ dependencies = [
"serde_derive", "serde_derive",
"serde_json", "serde_json",
"thiserror", "thiserror",
"vm-memory", "vm-memory 0.6.0",
"vmm-sys-util", "vmm-sys-util",
] ]
@ -336,7 +336,7 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c819cc8275b0f2c1ed9feec455ca288b45d82932384a6a5f7a86812ee3427459" checksum = "c819cc8275b0f2c1ed9feec455ca288b45d82932384a6a5f7a86812ee3427459"
dependencies = [ dependencies = [
"vm-memory", "vm-memory 0.6.0",
] ]
[[package]] [[package]]
@ -351,7 +351,7 @@ dependencies = [
[[package]] [[package]]
name = "micro_http" name = "micro_http"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/firecracker-microvm/micro-http?branch=main#9b605a8b61df602cda62076d30d9f70307ea336f" source = "git+https://github.com/firecracker-microvm/micro-http?branch=main#9517a300370a158a7af0996b7eebf040d171e1a4"
dependencies = [ dependencies = [
"libc", "libc",
"vmm-sys-util", "vmm-sys-util",
@ -377,7 +377,7 @@ dependencies = [
"versionize", "versionize",
"versionize_derive", "versionize_derive",
"virtio-bindings", "virtio-bindings",
"vm-memory", "vm-memory 0.6.0",
"vm-virtio", "vm-virtio",
"vmm-sys-util", "vmm-sys-util",
] ]
@ -401,13 +401,14 @@ dependencies = [
"hypervisor", "hypervisor",
"libc", "libc",
"log", "log",
"thiserror",
"versionize", "versionize",
"versionize_derive", "versionize_derive",
"vfio-bindings", "vfio-bindings",
"vfio-ioctls", "vfio-ioctls",
"vm-allocator", "vm-allocator",
"vm-device", "vm-device",
"vm-memory", "vm-memory 0.6.0",
"vm-migration", "vm-migration",
"vmm-sys-util", "vmm-sys-util",
] ]
@ -655,17 +656,18 @@ dependencies = [
"kvm-ioctls", "kvm-ioctls",
"log", "log",
"vfio-bindings", "vfio-bindings",
"vm-memory", "vm-memory 0.5.0",
"vmm-sys-util", "vmm-sys-util",
] ]
[[package]] [[package]]
name = "vhost" name = "vhost"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/rust-vmm/vhost?branch=master#37a6a8e46444e9e4b59be5bff82e5c22a879f0c4" source = "git+https://github.com/rust-vmm/vhost?branch=master#14d754c5c77f06d5af8fc48b2634debd5fbd9a18"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"libc", "libc",
"vm-memory 0.6.0",
"vmm-sys-util", "vmm-sys-util",
] ]
@ -702,7 +704,7 @@ dependencies = [
"virtio-bindings", "virtio-bindings",
"vm-allocator", "vm-allocator",
"vm-device", "vm-device",
"vm-memory", "vm-memory 0.6.0",
"vm-migration", "vm-migration",
"vm-virtio", "vm-virtio",
"vmm-sys-util", "vmm-sys-util",
@ -714,7 +716,7 @@ version = "0.1.0"
dependencies = [ dependencies = [
"arch", "arch",
"libc", "libc",
"vm-memory", "vm-memory 0.6.0",
] ]
[[package]] [[package]]
@ -727,19 +729,29 @@ dependencies = [
"serde_json", "serde_json",
"thiserror", "thiserror",
"vfio-ioctls", "vfio-ioctls",
"vm-memory", "vm-memory 0.6.0",
"vmm-sys-util", "vmm-sys-util",
] ]
[[package]] [[package]]
name = "vm-fdt" name = "vm-fdt"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/rust-vmm/vm-fdt?branch=master#13ab882e2f8387753064351c69fbe35c422b448b" source = "git+https://github.com/rust-vmm/vm-fdt?branch=master#af59838e5df826cd3153d92ed1546f0b2cc454f7"
[[package]] [[package]]
name = "vm-memory" name = "vm-memory"
version = "0.5.0" version = "0.5.0"
source = "git+https://github.com/rust-vmm/vm-memory?rev=5bd7138758183a73ac0da27ce40c004d95f1a7e9#5bd7138758183a73ac0da27ce40c004d95f1a7e9" source = "git+https://github.com/rust-vmm/vm-memory?rev=5bd7138758183a73ac0da27ce40c004d95f1a7e9#5bd7138758183a73ac0da27ce40c004d95f1a7e9"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "vm-memory"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a8ebcb86ca457f9d6e14cf97009f679952eba42f0113de5db596e514cd0e43b"
dependencies = [ dependencies = [
"arc-swap", "arc-swap",
"libc", "libc",
@ -757,7 +769,7 @@ dependencies = [
"thiserror", "thiserror",
"versionize", "versionize",
"versionize_derive", "versionize_derive",
"vm-memory", "vm-memory 0.6.0",
] ]
[[package]] [[package]]
@ -766,7 +778,7 @@ version = "0.1.0"
dependencies = [ dependencies = [
"log", "log",
"virtio-bindings", "virtio-bindings",
"vm-memory", "vm-memory 0.6.0",
] ]
[[package]] [[package]]
@ -806,7 +818,7 @@ dependencies = [
"virtio-devices", "virtio-devices",
"vm-allocator", "vm-allocator",
"vm-device", "vm-device",
"vm-memory", "vm-memory 0.6.0",
"vm-migration", "vm-migration",
"vm-virtio", "vm-virtio",
"vmm-sys-util", "vmm-sys-util",

View File

@ -11,23 +11,23 @@ mshv = ["mshv-ioctls", "mshv-bindings"]
tdx = [] tdx = []
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0.42"
epoll = ">=4.0.1" epoll = "4.3.1"
thiserror = "1.0" thiserror = "1.0.26"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
kvm-ioctls = { version = "0.9.0", optional = true } kvm-ioctls = { version = "0.9.0", optional = true }
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.4.0", features = ["with-serde", "fam-wrappers"], optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.4.0", features = ["with-serde", "fam-wrappers"], optional = true }
mshv-bindings = {git = "https://github.com/rust-vmm/mshv", branch = "master", features = ["with-serde", "fam-wrappers"], optional = true } mshv-bindings = {git = "https://github.com/rust-vmm/mshv", branch = "master", features = ["with-serde", "fam-wrappers"], optional = true }
mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "master", optional = true} mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "master", optional = true}
serde = {version = ">=1.0.27", features = ["rc"] } serde = { version = "1.0.127", features = ["rc"] }
serde_derive = ">=1.0.27" serde_derive = "1.0.127"
serde_json = ">=1.0.9" serde_json = "1.0.66"
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] } vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] }
vmm-sys-util = { version = ">=0.5.0", features = ["with-serde"] } vmm-sys-util = { version = "0.8.0", features = ["with-serde"] }
[target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86] [target.'cfg(target_arch = "x86_64")'.dependencies.iced-x86]
version = "1.13" version = "1.13.0"
default-features = false default-features = false
features = ["std", "decoder", "op_code_info", "instr_info", "fast_fmt"] features = ["std", "decoder", "op_code_info", "instr_info", "fast_fmt"]

View File

@ -5,4 +5,4 @@ authors = ["The Chromium OS Authors"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"

View File

@ -5,7 +5,7 @@ authors = ["The Chromium OS Authors"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
epoll = ">=4.0.1" epoll = "4.3.1"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
net_gen = { path = "../net_gen" } net_gen = { path = "../net_gen" }
@ -16,9 +16,9 @@ versionize_derive = "0.1.4"
virtio-bindings = "0.1.0" virtio-bindings = "0.1.0"
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
vm-virtio = { path = "../vm-virtio" } vm-virtio = { path = "../vm-virtio" }
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"
[dev-dependencies] [dev-dependencies]
lazy_static = "1.3.0" lazy_static = "1.4.0"
pnet = "0.28.0" pnet = "0.28.0"
serde_json = "1.0.66" serde_json = "1.0.66"

View File

@ -9,7 +9,7 @@ anyhow = "1.0.42"
byteorder = "1.4.3" byteorder = "1.4.3"
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master" } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master" }
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
thiserror = "1.0.26" thiserror = "1.0.26"

View File

@ -13,4 +13,4 @@ byteorder = "1.4.3"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
remain = "0.2.2" remain = "0.2.2"
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"

View File

@ -8,11 +8,11 @@ edition = "2018"
default = [] default = []
[dependencies] [dependencies]
epoll = ">=4.0.1" epoll = "4.3.1"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
virtio-bindings = "0.1.0" virtio-bindings = "0.1.0"
vm-memory = { version = "0.6.0", features = ["backend-bitmap"] } vm-memory = { version = "0.6.0", features = ["backend-bitmap"] }
vm-virtio = { path = "../vm-virtio" } vm-virtio = { path = "../vm-virtio" }
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"
vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] }

View File

@ -6,9 +6,9 @@ edition = "2018"
[dependencies] [dependencies]
block_util = { path = "../block_util" } block_util = { path = "../block_util" }
clap = { version = "2.33.3", features=["wrap_help"] } clap = { version = "2.33.3", features = ["wrap_help"] }
env_logger = "0.9.0" env_logger = "0.9.0"
epoll = ">=4.0.1" epoll = "4.3.1"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
option_parser = { path = "../option_parser" } option_parser = { path = "../option_parser" }
@ -17,4 +17,4 @@ vhost_user_backend = { path = "../vhost_user_backend" }
vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] }
virtio-bindings = "0.1.0" virtio-bindings = "0.1.0"
vm-memory = "0.6.0" vm-memory = "0.6.0"
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"

View File

@ -5,9 +5,9 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
clap = { version = "2.33.3", features=["wrap_help"] } clap = { version = "2.33.3", features = ["wrap_help"] }
env_logger = "0.9.0" env_logger = "0.9.0"
epoll = ">=4.0.1" epoll = "4.3.1"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
net_util = { path = "../net_util" } net_util = { path = "../net_util" }
@ -16,4 +16,4 @@ vhost_user_backend = { path = "../vhost_user_backend" }
vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] }
virtio-bindings = "0.1.0" virtio-bindings = "0.1.0"
vm-memory = "0.6.0" vm-memory = "0.6.0"
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"

View File

@ -10,13 +10,13 @@ io_uring = ["block_util/io_uring"]
mshv = [] mshv = []
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0.42"
arc-swap = ">=1.0.0" arc-swap = "1.3.0"
block_util = { path = "../block_util" } block_util = { path = "../block_util" }
byteorder = "1.4.3" byteorder = "1.4.3"
epoll = ">=4.0.1" epoll = "4.3.1"
event_monitor = { path = "../event_monitor" } event_monitor = { path = "../event_monitor" }
io-uring = ">=0.4.0" io-uring = "0.5.1"
libc = "0.2.98" libc = "0.2.98"
log = "0.4.14" log = "0.4.14"
net_gen = { path = "../net_gen" } net_gen = { path = "../net_gen" }
@ -24,16 +24,16 @@ net_util = { path = "../net_util" }
pci = { path = "../pci" } pci = { path = "../pci" }
rate_limiter = { path = "../rate_limiter" } rate_limiter = { path = "../rate_limiter" }
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.24.5" } seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.24.5" }
serde = ">=1.0.27" serde = "1.0.127"
serde_derive = ">=1.0.27" serde_derive = "1.0.127"
serde_json = ">=1.0.9" serde_json = "1.0.66"
versionize = "0.1.6" versionize = "0.1.6"
versionize_derive = "0.1.4" versionize_derive = "0.1.4"
vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern"] } vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern"] }
virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]} virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
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.6.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.3.1" vmm-sys-util = "0.8.0"

View File

@ -9,12 +9,12 @@ default = []
kvm = ["vfio-ioctls/kvm"] kvm = ["vfio-ioctls/kvm"]
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0.42"
thiserror = "1.0" thiserror = "1.0.26"
serde = {version = ">=1.0.27", features = ["rc"] } serde = { version = "1.0.127", features = ["rc"] }
serde_derive = ">=1.0.27" serde_derive = "1.0.127"
serde_json = ">=1.0.9" serde_json = "1.0.66"
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master", default-features = false } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master", default-features = false }
vm-memory = { version = "0.6.0", features = ["backend-mmap"] } vm-memory = { version = "0.6.0", features = ["backend-mmap"] }
vmm-sys-util = ">=0.3.1" vmm-sys-util = "0.8.0"

View File

@ -5,11 +5,11 @@ authors = ["The Cloud Hypervisor Authors"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0.42"
thiserror = "1.0" thiserror = "1.0.26"
serde = {version = ">=1.0.27", features = ["rc"] } serde = { version = "1.0.127", features = ["rc"] }
serde_derive = ">=1.0.27" serde_derive = "1.0.127"
serde_json = ">=1.0.9" serde_json = "1.0.66"
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.6.0", features = ["backend-mmap", "backend-atomic"] }

View File

@ -9,5 +9,5 @@ default = []
[dependencies] [dependencies]
log = "0.4.14" log = "0.4.14"
virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]} virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }

View File

@ -16,14 +16,14 @@ tdx = ["arch/tdx", "hypervisor/tdx"]
[dependencies] [dependencies]
acpi_tables = { path = "../acpi_tables", optional = true } acpi_tables = { path = "../acpi_tables", optional = true }
anyhow = "1.0" anyhow = "1.0.42"
arc-swap = ">=1.0.0" arc-swap = "1.3.0"
arch = { path = "../arch" } arch = { path = "../arch" }
bitflags = ">=1.2.1" bitflags = "1.2.1"
block_util = { path = "../block_util" } block_util = { path = "../block_util" }
clap = "2.33.3" clap = "2.33.3"
devices = { path = "../devices" } devices = { path = "../devices" }
epoll = ">=4.0.1" epoll = "4.3.1"
event_monitor = { path = "../event_monitor" } event_monitor = { path = "../event_monitor" }
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
lazy_static = "1.4.0" lazy_static = "1.4.0"
@ -36,12 +36,12 @@ option_parser = { path = "../option_parser" }
pci = { path = "../pci" } pci = { path = "../pci" }
qcow = { path = "../qcow" } qcow = { path = "../qcow" }
seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.24.5" } seccomp = { git = "https://github.com/firecracker-microvm/firecracker", tag = "v0.24.5" }
serde = {version = ">=1.0.27", features = ["rc"] } serde = { version = "1.0.127", features = ["rc"] }
serde_derive = ">=1.0.27" serde_derive = "1.0.127"
serde_json = ">=1.0.9" serde_json = "1.0.66"
signal-hook = "0.3.9" signal-hook = "0.3.9"
thiserror = "1.0" thiserror = "1.0.26"
uuid = "0.8" uuid = "0.8.2"
versionize = "0.1.6" versionize = "0.1.6"
versionize_derive = "0.1.4" versionize_derive = "0.1.4"
vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master", default-features = false } vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master", default-features = false }
@ -51,7 +51,7 @@ vm-device = { path = "../vm-device" }
vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] } vm-memory = { version = "0.6.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.5.0", features = ["with-serde"] } vmm-sys-util = { version = "0.8.0", features = ["with-serde"] }
[dev-dependencies] [dev-dependencies]
credibility = "0.1.3" credibility = "0.1.3"