From eee10b4b01a585522f94ccaa1898335f081fcaf3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Jan 2022 14:12:30 +0000 Subject: [PATCH] build: bump serde from 1.0.135 to 1.0.136 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.135 to 1.0.136. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.135...v1.0.136) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- arch/Cargo.toml | 2 +- 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, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4dec44453..6fdfc2b9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -841,9 +841,9 @@ checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012" [[package]] name = "serde" -version = "1.0.135" +version = "1.0.136" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cf9235533494ea2ddcdb794665461814781c53f19d87b76e571a1c35acbad2b" +checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789" [[package]] name = "serde_derive" diff --git a/arch/Cargo.toml b/arch/Cargo.toml index 2f1e92e08..74e1a2b7e 100644 --- a/arch/Cargo.toml +++ b/arch/Cargo.toml @@ -17,7 +17,7 @@ hypervisor = { path = "../hypervisor" } libc = "0.2.114" linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] } log = "0.4.14" -serde = { version = "1.0.135", features = ["rc"] } +serde = { version = "1.0.136", features = ["rc"] } serde_derive = "1.0.135" thiserror = "1.0.30" versionize = "0.1.6" diff --git a/event_monitor/Cargo.toml b/event_monitor/Cargo.toml index c5db4b5c7..cde4044a0 100644 --- a/event_monitor/Cargo.toml +++ b/event_monitor/Cargo.toml @@ -6,6 +6,6 @@ edition = "2018" [dependencies] libc = "0.2.114" -serde = { version = "1.0.135", features = ["rc"] } +serde = { version = "1.0.136", features = ["rc"] } serde_derive = "1.0.135" serde_json = "1.0.78" diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 103da5a83..791b1b668 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -20,7 +20,7 @@ kvm-ioctls = { version = "0.11.0", optional = true } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0", features = ["with-serde", "fam-wrappers"], optional = true } 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.135", features = ["rc"] } +serde = { version = "1.0.136", features = ["rc"] } serde_derive = "1.0.135" serde_json = "1.0.78" vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/net_util/Cargo.toml b/net_util/Cargo.toml index d3ea4ccf5..52c3fe381 100644 --- a/net_util/Cargo.toml +++ b/net_util/Cargo.toml @@ -11,7 +11,7 @@ libc = "0.2.114" log = "0.4.14" net_gen = { path = "../net_gen" } rate_limiter = { path = "../rate_limiter" } -serde = "1.0.135" +serde = "1.0.136" versionize = "0.1.6" versionize_derive = "0.1.4" virtio-bindings = "0.1.0" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index e493a39e3..831b84e24 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 = "1.0.135" +serde = "1.0.136" serde_derive = "1.0.135" serde_json = "1.0.78" versionize = "0.1.6" diff --git a/vm-device/Cargo.toml b/vm-device/Cargo.toml index 9047c07a2..bd5100103 100644 --- a/vm-device/Cargo.toml +++ b/vm-device/Cargo.toml @@ -12,7 +12,7 @@ mshv = ["vfio-ioctls/mshv"] [dependencies] anyhow = "1.0.53" thiserror = "1.0.30" -serde = { version = "1.0.135", features = ["rc"] } +serde = { version = "1.0.136", features = ["rc"] } serde_derive = "1.0.135" serde_json = "1.0.78" vfio-ioctls = { git = "https://github.com/rust-vmm/vfio-ioctls", branch = "main", default-features = false } diff --git a/vm-migration/Cargo.toml b/vm-migration/Cargo.toml index 6df7f1ea2..542d1479e 100644 --- a/vm-migration/Cargo.toml +++ b/vm-migration/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] anyhow = "1.0.53" thiserror = "1.0.30" -serde = { version = "1.0.135", features = ["rc"] } +serde = { version = "1.0.136", features = ["rc"] } serde_derive = "1.0.135" serde_json = "1.0.78" versionize = "0.1.6" diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 977a0328b..7a05ed001 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -35,7 +35,7 @@ option_parser = { path = "../option_parser" } pci = { path = "../pci" } qcow = { path = "../qcow" } seccompiler = "0.2.0" -serde = { version = "1.0.135", features = ["rc"] } +serde = { version = "1.0.136", features = ["rc"] } serde_derive = "1.0.135" serde_json = "1.0.78" signal-hook = "0.3.13"