From 2349b7e753552b35b015538416e0b2aa46fd3dc3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Aug 2021 22:32:43 +0000 Subject: [PATCH] build: bump serde_json from 1.0.66 to 1.0.67 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.66 to 1.0.67. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.66...v1.0.67) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- event_monitor/Cargo.toml | 2 +- hypervisor/Cargo.toml | 2 +- net_util/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- vm-device/Cargo.toml | 2 +- vm-migration/Cargo.toml | 2 +- vmm/Cargo.toml | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9f371b60..56128a53a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -933,9 +933,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.66" +version = "1.0.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "336b10da19a12ad094b59d870ebde26a45402e5b470add4b5fd03c5048a32127" +checksum = "a7f9e390c27c3c0ce8bc5d725f6e4d30a29d26659494aa4b17535f7522c5c950" dependencies = [ "itoa", "ryu", diff --git a/Cargo.toml b/Cargo.toml index 96c1869c0..2f9447158 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ libc = "0.2.101" log = { version = "0.4.14", features = ["std"] } option_parser = { path = "option_parser" } seccompiler = { git = "https://github.com/rust-vmm/seccompiler"} -serde_json = "1.0.66" +serde_json = "1.0.67" signal-hook = "0.3.9" thiserror = "1.0.26" vmm = { path = "vmm" } @@ -43,7 +43,7 @@ credibility = "0.1.3" dirs = "3.0.2" lazy_static= "1.4.0" net_util = { path = "net_util" } -serde_json = "1.0.66" +serde_json = "1.0.67" test_infra = { path = "test_infra" } wait-timeout = "0.2.0" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index ccaeb8f1a..a16836c40 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -8,4 +8,4 @@ edition = "2018" libc = "0.2.101" serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" -serde_json = "1.0.66" +serde_json = "1.0.67" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index cfc05c6cc..2df876bc6 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -22,7 +22,7 @@ mshv-bindings = {git = "https://github.com/rust-vmm/mshv", branch = "master", fe mshv-ioctls = { git = "https://github.com/rust-vmm/mshv", branch = "master", optional = true} serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" -serde_json = "1.0.66" +serde_json = "1.0.67" vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] } vmm-sys-util = { version = "0.8.0", features = ["with-serde"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index d17bb027f..7d53beea0 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -21,4 +21,4 @@ vmm-sys-util = "0.8.0" [dev-dependencies] lazy_static = "1.4.0" pnet = "0.28.0" -serde_json = "1.0.66" +serde_json = "1.0.67" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 5f9b74f54..f982e1315 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -26,7 +26,7 @@ rate_limiter = { path = "../rate_limiter" } seccompiler = { git = "https://github.com/rust-vmm/seccompiler"} serde = "1.0.129" serde_derive = "1.0.129" -serde_json = "1.0.66" +serde_json = "1.0.67" versionize = "0.1.6" versionize_derive = "0.1.4" vhost = { version = "0.1.0", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern"] } diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index b922d337d..09e7ce885 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -13,7 +13,7 @@ anyhow = "1.0.43" thiserror = "1.0.26" serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" -serde_json = "1.0.66" +serde_json = "1.0.67" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "master", default-features = false } vm-memory = { version = "0.6.0", features = ["backend-mmap"] } vmm-sys-util = "0.8.0" diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 61f912ff2..57a82d8b2 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -9,7 +9,7 @@ anyhow = "1.0.43" thiserror = "1.0.26" serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" -serde_json = "1.0.66" +serde_json = "1.0.67" versionize = "0.1.6" versionize_derive = "0.1.4" vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 7a86eaa62..a86b2875e 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -38,7 +38,7 @@ qcow = { path = "../qcow" } seccompiler = { git = "https://github.com/rust-vmm/seccompiler"} serde = { version = "1.0.129", features = ["rc"] } serde_derive = "1.0.129" -serde_json = "1.0.66" +serde_json = "1.0.67" signal-hook = "0.3.9" thiserror = "1.0.26" uuid = "0.8.2"