build: bump serde from 1.0.134 to 1.0.135

Bumps [serde](https://github.com/serde-rs/serde) from 1.0.134 to 1.0.135.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.134...v1.0.135)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2022-01-25 05:37:08 +00:00
parent ef9a388f87
commit d3081ff50c
9 changed files with 10 additions and 10 deletions

4
Cargo.lock generated
View File

@ -841,9 +841,9 @@ checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012"
[[package]]
name = "serde"
version = "1.0.134"
version = "1.0.135"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b3c34c1690edf8174f5b289a336ab03f568a4460d8c6df75f2f3a692b3bc6a"
checksum = "2cf9235533494ea2ddcdb794665461814781c53f19d87b76e571a1c35acbad2b"
[[package]]
name = "serde_derive"

View File

@ -17,7 +17,7 @@ hypervisor = { path = "../hypervisor" }
libc = "0.2.113"
linux-loader = { version = "0.4.0", features = ["elf", "bzimage", "pe"] }
log = "0.4.14"
serde = { version = "1.0.134", features = ["rc"] }
serde = { version = "1.0.135", features = ["rc"] }
serde_derive = "1.0.135"
thiserror = "1.0.30"
versionize = "0.1.6"

View File

@ -6,6 +6,6 @@ edition = "2018"
[dependencies]
libc = "0.2.113"
serde = { version = "1.0.134", features = ["rc"] }
serde = { version = "1.0.135", features = ["rc"] }
serde_derive = "1.0.135"
serde_json = "1.0.78"

View File

@ -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.134", features = ["rc"] }
serde = { version = "1.0.135", features = ["rc"] }
serde_derive = "1.0.135"
serde_json = "1.0.78"
vm-memory = { version = "0.7.0", features = ["backend-mmap", "backend-atomic"] }

View File

@ -11,7 +11,7 @@ libc = "0.2.113"
log = "0.4.14"
net_gen = { path = "../net_gen" }
rate_limiter = { path = "../rate_limiter" }
serde = "1.0.134"
serde = "1.0.135"
versionize = "0.1.6"
versionize_derive = "0.1.4"
virtio-bindings = "0.1.0"

View File

@ -23,7 +23,7 @@ net_util = { path = "../net_util" }
pci = { path = "../pci" }
rate_limiter = { path = "../rate_limiter" }
seccompiler = "0.2.0"
serde = "1.0.134"
serde = "1.0.135"
serde_derive = "1.0.135"
serde_json = "1.0.78"
versionize = "0.1.6"

View File

@ -12,7 +12,7 @@ mshv = ["vfio-ioctls/mshv"]
[dependencies]
anyhow = "1.0.53"
thiserror = "1.0.30"
serde = { version = "1.0.134", features = ["rc"] }
serde = { version = "1.0.135", 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 }

View File

@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.53"
thiserror = "1.0.30"
serde = { version = "1.0.134", features = ["rc"] }
serde = { version = "1.0.135", features = ["rc"] }
serde_derive = "1.0.135"
serde_json = "1.0.78"
versionize = "0.1.6"

View File

@ -35,7 +35,7 @@ option_parser = { path = "../option_parser" }
pci = { path = "../pci" }
qcow = { path = "../qcow" }
seccompiler = "0.2.0"
serde = { version = "1.0.134", features = ["rc"] }
serde = { version = "1.0.135", features = ["rc"] }
serde_derive = "1.0.135"
serde_json = "1.0.78"
signal-hook = "0.3.13"