From fab448bc996de67c228e616f8af2a392a2aa3c57 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Oct 2021 08:05:40 +0000 Subject: [PATCH] build(deps): bump vm-memory from 0.6.0 to 0.7.0 Bumps [vm-memory](https://github.com/rust-vmm/vm-memory) from 0.6.0 to 0.7.0. - [Release notes](https://github.com/rust-vmm/vm-memory/releases) - [Changelog](https://github.com/rust-vmm/vm-memory/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/vm-memory/compare/v0.6.0...v0.7.0) --- updated-dependencies: - dependency-name: vm-memory dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 ++++++++++++++---- src/i2c/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6a7a8e..ed11e1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -282,7 +282,7 @@ checksum = "2d23ddeb452fb4f837526c6298cc8a2f4948e5595b0328a3d61b5eebe51874d7" dependencies = [ "bitflags", "libc", - "vm-memory", + "vm-memory 0.6.0", "vmm-sys-util", ] @@ -298,7 +298,7 @@ dependencies = [ "vhost", "vhost-user-backend", "virtio-bindings", - "vm-memory", + "vm-memory 0.7.0", "vmm-sys-util", ] @@ -313,7 +313,7 @@ dependencies = [ "vhost", "virtio-bindings", "virtio-queue", - "vm-memory", + "vm-memory 0.6.0", "vmm-sys-util", ] @@ -329,7 +329,7 @@ version = "0.1.0" source = "git+https://github.com/rust-vmm/vm-virtio?rev=6013dd9#6013dd91b2e6eb77ea10c6bdeda8f5eb18de6dda" dependencies = [ "log", - "vm-memory", + "vm-memory 0.6.0", "vmm-sys-util", ] @@ -344,6 +344,16 @@ dependencies = [ "winapi", ] +[[package]] +name = "vm-memory" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "339d4349c126fdcd87e034631d7274370cf19eb0e87b33166bcd956589fc72c5" +dependencies = [ + "libc", + "winapi", +] + [[package]] name = "vmm-sys-util" version = "0.9.0" diff --git a/src/i2c/Cargo.toml b/src/i2c/Cargo.toml index 49684ba..8cc508f 100644 --- a/src/i2c/Cargo.toml +++ b/src/i2c/Cargo.toml @@ -20,5 +20,5 @@ thiserror = "1.0" vhost = { version = "0.2", features = ["vhost-user-slave"] } vhost-user-backend = { git = "https://github.com/rust-vmm/vhost-user-backend", rev = "bd6b53348f06055abcb2b7254168d716b742f383" } virtio-bindings = ">=0.1" -vm-memory = "0.6" +vm-memory = "0.7" vmm-sys-util = "=0.9.0"