Skip to content

Commit

Permalink
sha1+sha2: use cpufeatures v0.1.1 crate release (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed May 6, 2021
1 parent 12493fc commit ca27667
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions sha1/Cargo.toml
Expand Up @@ -22,11 +22,11 @@ cfg-if = "1.0"
sha1-asm = { version = "0.4", optional = true }

[target.aarch64-apple-darwin.dependencies]
cpufeatures = { version = "0.1", git = "https://github.com/rustcrypto/utils.git" }
cpufeatures = "0.1.1"
[target.'cfg(all(target_arch = "aarch64", target_os = "linux"))'.dependencies]
cpufeatures = { version = "0.1", git = "https://github.com/rustcrypto/utils.git" }
cpufeatures = "0.1.1"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
cpufeatures = { version = "0.1", git = "https://github.com/rustcrypto/utils.git" }
cpufeatures = "0.1.1"

[dev-dependencies]
digest = { version = "0.9", features = ["dev"] }
Expand Down
6 changes: 3 additions & 3 deletions sha2/Cargo.toml
Expand Up @@ -22,11 +22,11 @@ cfg-if = "1.0"
sha2-asm = { version = "0.6.1", optional = true }

[target.aarch64-apple-darwin.dependencies]
cpufeatures = { version = "0.1", git = "https://github.com/rustcrypto/utils.git" }
cpufeatures = "0.1.1"
[target.'cfg(all(target_arch = "aarch64", target_os = "linux"))'.dependencies]
cpufeatures = { version = "0.1", git = "https://github.com/rustcrypto/utils.git" }
cpufeatures = "0.1.1"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
cpufeatures = { version = "0.1", git = "https://github.com/rustcrypto/utils.git" }
cpufeatures = "0.1.1"

[dev-dependencies]
digest = { version = "0.9", features = ["dev"] }
Expand Down

0 comments on commit ca27667

Please sign in to comment.