diff --git a/mythril/Cargo.lock b/mythril/Cargo.lock index 1fc5619..d904554 100644 --- a/mythril/Cargo.lock +++ b/mythril/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "ahash" version = "0.3.8" @@ -167,7 +169,7 @@ dependencies = [ "nasm-rs", "num_enum", "paste", - "raw-cpuid", + "raw-cpuid 9.1.1", "rlibc", "serde", "serde_json", @@ -229,15 +231,24 @@ dependencies = [ [[package]] name = "raw-cpuid" -version = "8.1.1" +version = "8.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cee2c7710d96f9f90f56824fca5438b301dc0fb49ece4cf9dfa044e54067e10" +checksum = "1fdf7d9dbd43f3d81d94a49c1c3df73cc2b3827995147e6cf7f89d4ec5483e73" dependencies = [ "bitflags", "cc", "rustc_version", ] +[[package]] +name = "raw-cpuid" +version = "9.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1733f6f80c9c24268736a501cd00d41a9849b4faa7a9f9334c096e5d10553206" +dependencies = [ + "bitflags", +] + [[package]] name = "rlibc" version = "1.0.0" @@ -363,5 +374,5 @@ checksum = "c146cbc47471e076987378c159a7aa8fa434680c6fbddca59fe6f40f1591c819" dependencies = [ "bit_field", "bitflags", - "raw-cpuid", + "raw-cpuid 8.1.2", ] diff --git a/mythril/Cargo.toml b/mythril/Cargo.toml index 6081519..bcda532 100644 --- a/mythril/Cargo.toml +++ b/mythril/Cargo.toml @@ -21,7 +21,7 @@ log = { version = "0.4.8", default-features = false } multiboot = "0.3.0" multiboot2 = "0.9.0" paste = "1.0" -raw-cpuid = "8.1.1" +raw-cpuid = "9.1.1" rlibc = "1.0.0" serde = {version = "^1", default-features = false, features = ["alloc", "derive"] } serde_json = {version = "^1", default-features = false, features = ["alloc"] }