From 5444df439ea54cf574f01a2611ad28f386a3fe25 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 12:27:01 +0000 Subject: [PATCH] build(deps): Bump the rust-vmm group with 2 updates Bumps the rust-vmm group with 2 updates: [kvm-ioctls](https://github.com/rust-vmm/kvm-ioctls) and [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util). Updates `kvm-ioctls` from 0.15.0 to 0.16.0 - [Release notes](https://github.com/rust-vmm/kvm-ioctls/releases) - [Changelog](https://github.com/rust-vmm/kvm-ioctls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/kvm-ioctls/compare/v0.15.0...v0.16.0) Updates `vmm-sys-util` from 0.11.2 to 0.12.1 - [Release notes](https://github.com/rust-vmm/vmm-sys-util/releases) - [Changelog](https://github.com/rust-vmm/vmm-sys-util/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/vmm-sys-util/commits/v0.12.1) --- updated-dependencies: - dependency-name: kvm-ioctls dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - dependency-name: vmm-sys-util dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 +++++++++++++------ Cargo.toml | 4 ++-- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 385c6304..f35c69ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -737,17 +737,24 @@ name = "kvm-bindings" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "efe70e65a5b092161d17f5005b66e5eefe7a94a70c332e755036fc4af78c4e79" + +[[package]] +name = "kvm-bindings" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "081fbd8164229a990fbf24a1f35d287740db110c2b5d42addf460165f1b0e032" dependencies = [ "vmm-sys-util", ] [[package]] name = "kvm-ioctls" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bdde2b46ee7b6587ef79f751019c4726c4f2d3e4628df5d69f3f9c5cb6c6bd4" +checksum = "9002dff009755414f22b962ec6ae6980b07d6d8b06e5297b1062019d72bd6a8c" dependencies = [ - "kvm-bindings", + "bitflags 2.4.1", + "kvm-bindings 0.7.0", "libc", "vmm-sys-util", ] @@ -1439,7 +1446,7 @@ dependencies = [ "gdbstub", "gdbstub_arch", "hermit-entry", - "kvm-bindings", + "kvm-bindings 0.6.0", "kvm-ioctls", "lazy_static", "libc", @@ -1505,9 +1512,9 @@ checksum = "878bcb1b2812a10c30d53b0ed054999de3d98f25ece91fc173973f9c57aaae86" [[package]] name = "vmm-sys-util" -version = "0.11.2" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48b7b084231214f7427041e4220d77dfe726897a6d41fddee450696e66ff2a29" +checksum = "1d1435039746e20da4f8d507a72ee1b916f7b4b05af7a91c093d2c6561934ede" dependencies = [ "bitflags 1.3.2", "libc", diff --git a/Cargo.toml b/Cargo.toml index 42198ec3..beba505f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,12 +60,12 @@ rftrace-frontend = { version = "0.1", optional = true } [target.'cfg(target_os = "linux")'.dependencies] kvm-bindings = "0.6" -kvm-ioctls = "0.15" +kvm-ioctls = "0.16" mac_address = "1.1" nix = { version = "0.27", features = ["mman", "pthread", "signal"] } tun-tap = { version = "0.1", default-features = false } virtio-bindings = { version = "0.2", features = ["virtio-v4_14_0"] } -vmm-sys-util = "0.11" +vmm-sys-util = "0.12" [target.'cfg(target_os = "macos")'.dependencies] burst = "0.0"