diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 5fbce9d49..a43f4e8b6 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -17,7 +17,7 @@ linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] } log = "0.4.17" serde = { version = "1.0.142", features = ["rc", "derive"] } thiserror = "1.0.32" -uuid = "1.1.1" +uuid = "1.1.2" versionize = "0.1.6" versionize_derive = "0.1.4" vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-bitmap"] } @@ -25,5 +25,5 @@ vm-migration = { path = "../vm-migration" } vmm-sys-util = { version = "0.10.0", features = ["with-serde"] } [target.'cfg(target_arch = "aarch64")'.dependencies] -fdt_parser = { version = "0.1.3", package = 'fdt'} +fdt_parser = { version = "0.1.4", package = "fdt" } vm-fdt = { git = "https://github.com/rust-vmm/vm-fdt", branch = "main" } diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index 585a69cff..3091b00bf 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -47,6 +47,7 @@ dependencies = [ "log", "serde", "thiserror", + "uuid", "versionize", "versionize_derive", "vm-fdt", diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index 83519fe08..6226d74bf 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] epoll = "4.3.1" -getrandom = "0.2" +getrandom = "0.2.7" libc = "0.2.127" log = "0.4.17" net_gen = { path = "../net_gen" } diff --git a/pci/Cargo.toml b/pci/Cargo.toml index 2e702dcd5..57d485e2d 100644 --- a/pci/Cargo.toml +++ b/pci/Cargo.toml @@ -18,7 +18,7 @@ vfio_user = { path = "../vfio_user" } vmm-sys-util = "0.10.0" libc = "0.2.127" log = "0.4.17" -serde = { version="1.0.142", features=["derive"] } +serde = { version = "1.0.142", features = ["derive"] } thiserror = "1.0.32" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/test_infra/Cargo.toml b/test_infra/Cargo.toml index 69b804f9b..9e3702413 100644 --- a/test_infra/Cargo.toml +++ b/test_infra/Cargo.toml @@ -9,6 +9,6 @@ dirs = "4.0.0" epoll = "4.3.1" libc = "0.2.127" once_cell = "1.13.0" -ssh2 = { version = "0.9.1", features = ["vendored-openssl"]} +ssh2 = { version = "0.9.3", features = ["vendored-openssl"] } vmm-sys-util = "0.10.0" wait-timeout = "0.2.0" diff --git a/vfio_user/Cargo.toml b/vfio_user/Cargo.toml index c05e606f2..325169f11 100644 --- a/vfio_user/Cargo.toml +++ b/vfio_user/Cargo.toml @@ -7,12 +7,12 @@ edition = "2021" [dependencies] libc = "0.2.127" log = "0.4.17" -serde = {version = ">=1.0.27", features = ["rc"] } -serde_derive = ">=1.0.27" -serde_json = ">=1.0.9" +serde = { version = "1.0.142", features = ["rc"] } +serde_derive = "1.0.142" +serde_json = "1.0.83" thiserror = "1.0.32" vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] } -vmm-sys-util = ">=0.3.1" +vmm-sys-util = "0.10.0" [dependencies.vfio-bindings] version = "0.3.1" diff --git a/vhdx/Cargo.toml b/vhdx/Cargo.toml index df22ab764..266a3d767 100644 --- a/vhdx/Cargo.toml +++ b/vhdx/Cargo.toml @@ -11,5 +11,5 @@ crc32c = "0.6.3" libc = "0.2.127" log = "0.4.17" remain = "0.2.4" -thiserror = "1.0" +thiserror = "1.0.32" uuid = { version = "1.1.2", features = ["v4"] } diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 65d6bbca6..31b9ccfb0 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -23,7 +23,7 @@ net_util = { path = "../net_util" } pci = { path = "../pci" } rate_limiter = { path = "../rate_limiter" } seccompiler = "0.2.0" -serde = { version="1.0.142", features=["derive"] } +serde = { version = "1.0.142", features = ["derive"] } serde_json = "1.0.83" thiserror = "1.0.32" versionize = "0.1.6"