dsa v0.7.0-rc.2 (#1011)

This commit is contained in:
Tony Arcieri
2025-07-03 15:46:45 -06:00
committed by GitHub
parent 53361b03cd
commit c5d63c881c
2 changed files with 4 additions and 4 deletions
Generated
+1 -1
View File
@@ -339,7 +339,7 @@ dependencies = [
[[package]]
name = "dsa"
version = "0.7.0-rc.1"
version = "0.7.0-rc.2"
dependencies = [
"crypto-bigint",
"crypto-primes",
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "dsa"
version = "0.7.0-rc.1"
version = "0.7.0-rc.2"
description = """
Pure Rust implementation of the Digital Signature Algorithm (DSA) as specified
in FIPS 186-4 (Digital Signature Standard), providing RFC6979 deterministic
@@ -19,7 +19,7 @@ rust-version = "1.85"
digest = "0.11.0-rc.0"
crypto-bigint = { version = "=0.7.0-pre.6", default-features = false, features = ["alloc", "zeroize"] }
crypto-primes = { version = "=0.7.0-pre.1", default-features = false }
pkcs8 = { version = "0.11.0-rc.1", default-features = false, features = ["alloc"] }
pkcs8 = { version = "0.11.0-rc.5", default-features = false, features = ["alloc"] }
rfc6979 = { version = "0.5.0-rc.0" }
sha2 = { version = "0.11.0-rc.0", default-features = false }
signature = { version = "3.0.0-rc.1", default-features = false, features = ["alloc", "digest", "rand_core"] }
@@ -33,7 +33,7 @@ proptest = "1"
rand = "0.9"
rand_chacha = "0.9"
sha1 = "0.11.0-rc.0"
der = { version = "0.8.0-rc.1", features = ["derive"] }
der = { version = "0.8.0-rc.6", features = ["derive"] }
[features]
hazmat = []