Fix cargo-deny issue with raw-cpuid advisory.

cargo-deny tells us that we should upgrade raw-cpuid to v9.0.0. This
new version also seems to lack the `nightly` feature (perhaps it has
been incorporated into the base functionality) so I had to remove this
feature selector to build.
This commit is contained in:
Chris Fallin
2021-01-25 08:32:06 -08:00
parent a0fad6065a
commit 3c5416446c
2 changed files with 4 additions and 33 deletions

View File

@@ -15,15 +15,12 @@ cranelift-codegen = { path = "../codegen", version = "0.69.0", default-features
target-lexicon = "0.11"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
raw-cpuid = "8.1.2"
raw-cpuid = "9.0.0"
[features]
default = ["std"]
std = ["cranelift-codegen/std"]
# when compiling with the "core" feature, nightly must be enabled
# enabling the "nightly" feature for raw-cpuid allows avoiding
# linking in a c-library.
core = ["cranelift-codegen/core", "raw-cpuid/nightly"]
core = ["cranelift-codegen/core"]
[badges]
maintenance = { status = "experimental" }