diff --git a/Cargo.lock b/Cargo.lock index 806f614c9..1c54aae41 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -932,9 +932,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.81" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c" +checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index db53f8407..0bd9fb9fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ libc = "0.2.126" log = { version = "0.4.17", features = ["std"] } option_parser = { path = "option_parser" } seccompiler = "0.2.0" -serde_json = "1.0.81" +serde_json = "1.0.82" signal-hook = "0.3.14" thiserror = "1.0.31" vmm = { path = "vmm" } @@ -46,7 +46,7 @@ versionize_derive = { git = "https://github.com/cloud-hypervisor/versionize_deri dirs = "4.0.0" net_util = { path = "net_util" } once_cell = "1.12.0" -serde_json = "1.0.81" +serde_json = "1.0.82" test_infra = { path = "test_infra" } wait-timeout = "0.2.0" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index 905e97806..d6c37107f 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] libc = "0.2.126" serde = { version = "1.0.137", features = ["rc", "derive"] } -serde_json = "1.0.81" +serde_json = "1.0.82" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 3097b5611..13fff2866 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -21,7 +21,7 @@ kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branc mshv-bindings = { git = "https://github.com/rust-vmm/mshv", branch = "main", features = ["with-serde", "fam-wrappers"], optional = true } mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "main", optional = true} serde = { version = "1.0.137", features = ["rc", "derive"] } -serde_json = "1.0.81" +serde_json = "1.0.82" vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = { version = "0.9.0", features = ["with-serde"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index f1825f6e0..f2afbed84 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -24,4 +24,4 @@ vmm-sys-util = "0.9.0" once_cell = "1.12.0" pnet = "0.31.0" pnet_datalink = "0.31.0" -serde_json = "1.0.81" +serde_json = "1.0.82" diff --git a/performance-metrics/Cargo.toml b/performance-metrics/Cargo.toml index 4f0eff62f..66e1aa5de 100644 --- a/performance-metrics/Cargo.toml +++ b/performance-metrics/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" clap = { version = "3.2.7", features = ["wrap_help","cargo"] } dirs = "4.0.0" serde = { version = "1.0.137", features = ["rc", "derive"] } -serde_json = "1.0.81" +serde_json = "1.0.82" test_infra = { path = "../test_infra" } thiserror = "1.0.31" wait-timeout = "0.2.0" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 6045109af..8cf307123 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -24,7 +24,7 @@ pci = { path = "../pci" } rate_limiter = { path = "../rate_limiter" } seccompiler = "0.2.0" serde = { version="1.0.137", features=["derive"] } -serde_json = "1.0.81" +serde_json = "1.0.82" thiserror = "1.0.31" versionize = "0.1.6" versionize_derive = "0.1.4" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index bf226137e..3f135ca95 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -14,7 +14,7 @@ anyhow = "1.0.58" hypervisor = { path = "../hypervisor" } thiserror = "1.0.31" serde = { version = "1.0.137", features = ["rc", "derive"] } -serde_json = "1.0.81" +serde_json = "1.0.82" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio", branch = "main", default-features = false } vm-memory = { version = "0.8.0", features = ["backend-mmap"] } vmm-sys-util = "0.9.0" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index a9e9477c7..91fad4d2b 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" anyhow = "1.0.58" thiserror = "1.0.31" serde = { version = "1.0.137", features = ["rc", "derive"] } -serde_json = "1.0.81" +serde_json = "1.0.82" versionize = "0.1.6" versionize_derive = "0.1.4" vm-memory = { version = "0.8.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 2ac97ae72..f3be570fb 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -40,7 +40,7 @@ pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.2.0" serde = { version = "1.0.137", features = ["rc", "derive"] } -serde_json = "1.0.81" +serde_json = "1.0.82" signal-hook = "0.3.14" thiserror = "1.0.31" uuid = "1.1.2"