From 726350db73aa35ee0763a2b49cec079732024f97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 12:32:13 +0000 Subject: [PATCH] build(deps): Bump the rust-vmm group with 3 updates Bumps the rust-vmm group with 3 updates: [kvm-bindings](https://github.com/rust-vmm/kvm-bindings), [kvm-ioctls](https://github.com/rust-vmm/kvm-ioctls) and [vmm-sys-util](https://github.com/rust-vmm/vmm-sys-util). Updates `kvm-bindings` from 0.6.0 to 0.7.0 - [Release notes](https://github.com/rust-vmm/kvm-bindings/releases) - [Changelog](https://github.com/rust-vmm/kvm-bindings/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-vmm/kvm-bindings/compare/v0.6.0...v0.7.0) 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-bindings dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-vmm - 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 | 13 +++++++------ Cargo.toml | 6 +++--- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 385c6304..1bbaafa7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -734,19 +734,20 @@ dependencies = [ [[package]] name = "kvm-bindings" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efe70e65a5b092161d17f5005b66e5eefe7a94a70c332e755036fc4af78c4e79" +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 = [ + "bitflags 2.4.1", "kvm-bindings", "libc", "vmm-sys-util", @@ -1505,9 +1506,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..ea4c2c9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,13 +59,13 @@ rftrace = { version = "0.1", optional = true } rftrace-frontend = { version = "0.1", optional = true } [target.'cfg(target_os = "linux")'.dependencies] -kvm-bindings = "0.6" -kvm-ioctls = "0.15" +kvm-bindings = "0.7" +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"