From e3317f8d34635054e840c6cc4ecec298893208c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 01:09:43 +0000 Subject: [PATCH] Bump x86 from 0.37.0 to 0.51.0 Bumps [x86](https://github.com/gz/rust-x86) from 0.37.0 to 0.51.0. - [Release notes](https://github.com/gz/rust-x86/releases) - [Changelog](https://github.com/gz/rust-x86/blob/master/CHANGELOG.md) - [Commits](https://github.com/gz/rust-x86/commits) --- updated-dependencies: - dependency-name: x86 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 +++++++++++++---- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7bf3dcfd..03a2ea48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -545,6 +545,15 @@ dependencies = [ "bitflags", ] +[[package]] +name = "raw-cpuid" +version = "10.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "738bc47119e3eeccc7e94c4a506901aea5e7b4944ecd0829cbebf4af04ceda12" +dependencies = [ + "bitflags", +] + [[package]] name = "rayon" version = "1.5.0" @@ -814,7 +823,7 @@ dependencies = [ "mac_address", "nix 0.20.0", "nom", - "raw-cpuid", + "raw-cpuid 9.0.0", "rftrace", "rftrace-frontend", "rustc-serialize", @@ -987,13 +996,13 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "x86" -version = "0.37.0" +version = "0.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4fd9298cd1b1f88546fc0a5e8faa3354013cd010589299c624fde436aad76cc" +checksum = "fa7477e4af519a58818c1f0ab4b149d0ce3304e625be8fe56c8484cac50b0532" dependencies = [ "bit_field", "bitflags", - "raw-cpuid", + "raw-cpuid 10.3.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index c54bd311..cf5c4559 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ version = "0.1.2" default-features = false [target.'cfg(target_arch = "x86_64")'.dependencies.x86] -version = "0.37.0" +version = "0.51.0" default-features = false [target.'cfg(target_arch = "x86_64")'.dependencies.raw-cpuid]