diff --git a/Cargo.lock b/Cargo.lock index c03de110..6d0c47f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -104,15 +104,15 @@ dependencies = [ [[package]] name = "cpubits" -version = "0.1.0-rc.3" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11a8c0210fa48ba3ea04ac1e9c6e72ae66009db3b1f1745635d4ff2e58eaadd0" +checksum = "5ef0c543070d296ea414df2dd7625d1b24866ce206709d8a4a424f28377f5861" [[package]] name = "cpufeatures" -version = "0.2.17" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" dependencies = [ "libc", ] diff --git a/aes/Cargo.toml b/aes/Cargo.toml index b0d31fc3..6678460a 100644 --- a/aes/Cargo.toml +++ b/aes/Cargo.toml @@ -14,11 +14,11 @@ categories = ["cryptography", "no-std"] [dependencies] cipher = "0.5" -cpubits = "0.1.0-rc.3" +cpubits = "0.1" zeroize = { version = "1.5.6", optional = true, default-features = false, features = ["aarch64"] } [target.'cfg(any(target_arch = "aarch64", target_arch = "x86_64", target_arch = "x86"))'.dependencies] -cpufeatures = "0.2.12" +cpufeatures = "0.3" [dev-dependencies] cipher = { version = "0.5", features = ["dev"] }