diff --git a/Cargo.lock b/Cargo.lock index 8abbef3..f1f3139 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1088,8 +1088,9 @@ dependencies = [ [[package]] name = "signature" -version = "2.3.0-pre.6" -source = "git+https://github.com/RustCrypto/traits.git#b46b3d185459416fdd86a0ac2713f716f1bd183e" +version = "2.3.0-pre.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6e22be6d22b655ff65ed5635383d63ac17a99c5c0a05a83a414d399056d4e1d" dependencies = [ "digest", "rand_core 0.9.2", diff --git a/Cargo.toml b/Cargo.toml index 45bf641..0316731 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,6 @@ slh-dsa = { path = "./slh-dsa" } # https://github.com/RustCrypto/traits/pull/1774 # https://github.com/RustCrypto/traits/pull/1822 elliptic-curve = { git = "https://github.com/RustCrypto/traits.git" } -signature = { git = "https://github.com/RustCrypto/traits.git" } # https://github.com/RustCrypto/crypto-bigint/pull/762 # https://github.com/RustCrypto/crypto-bigint/pull/765 diff --git a/ecdsa/Cargo.toml b/ecdsa/Cargo.toml index 2a838bd..7e73591 100644 --- a/ecdsa/Cargo.toml +++ b/ecdsa/Cargo.toml @@ -18,7 +18,7 @@ rust-version = "1.85" [dependencies] elliptic-curve = { version = "0.14.0-rc.1", default-features = false, features = ["sec1"] } -signature = { version = "=2.3.0-pre.6", default-features = false, features = ["rand_core"] } +signature = { version = "=2.3.0-pre.7", default-features = false, features = ["rand_core"] } # optional dependencies der = { version = "0.8.0-rc.1", optional = true } diff --git a/ed25519/Cargo.toml b/ed25519/Cargo.toml index a777b7d..7ccacee 100644 --- a/ed25519/Cargo.toml +++ b/ed25519/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" [dependencies] # TODO(tarcieri): relax requirement back to `2` before next release -signature = { version = "=2.3.0-pre.6", default-features = false } +signature = { version = "=2.3.0-pre.7", default-features = false } # optional dependencies pkcs8 = { version = "0.11.0-rc.2", optional = true } diff --git a/ed448/Cargo.toml b/ed448/Cargo.toml index eec8e17..ea14931 100644 --- a/ed448/Cargo.toml +++ b/ed448/Cargo.toml @@ -19,7 +19,7 @@ rust-version = "1.85" [dependencies] # TODO(tarcieri): relax requirement back to `2` before next release -signature = { version = "=2.3.0-pre.6", default-features = false } +signature = { version = "=2.3.0-pre.7", default-features = false } # optional dependencies pkcs8 = { version = "0.11.0-rc.1", optional = true } diff --git a/lms/Cargo.toml b/lms/Cargo.toml index 0424d1f..e031b9d 100644 --- a/lms/Cargo.toml +++ b/lms/Cargo.toml @@ -18,7 +18,7 @@ rand = "0.9.0" sha2 = "=0.11.0-pre.5" static_assertions = "1.1.0" rand_core = "0.9.0" -signature = { version = "=2.3.0-pre.6", features = ["digest", "std", "rand_core"] } +signature = { version = "=2.3.0-pre.7", features = ["digest", "std", "rand_core"] } typenum = { version = "1.17.0", features = ["const-generics"] } zeroize = "1.8.1" diff --git a/ml-dsa/Cargo.toml b/ml-dsa/Cargo.toml index 40495a0..941d94d 100644 --- a/ml-dsa/Cargo.toml +++ b/ml-dsa/Cargo.toml @@ -36,7 +36,7 @@ hybrid-array = { version = "0.3", features = ["extra-sizes"] } num-traits = "0.2.19" rand_core = { version = "0.9", optional = true } sha3 = "=0.11.0-pre.5" -signature = "=2.3.0-pre.6" +signature = "=2.3.0-pre.7" zeroize = { version = "1.8.1", optional = true, default-features = false } const-oid = { version = "0.10.0-rc.1", features = ["db"], optional = true } diff --git a/slh-dsa/Cargo.toml b/slh-dsa/Cargo.toml index 9531781..aea57a4 100644 --- a/slh-dsa/Cargo.toml +++ b/slh-dsa/Cargo.toml @@ -21,7 +21,7 @@ typenum = { version = "1.17.0", features = ["const-generics"] } sha3 = { version = "=0.11.0-pre.5", default-features = false } zerocopy = { version = "0.7.34", features = ["derive"] } rand_core = { version = "0.9.2" } -signature = { version = "=2.3.0-pre.6", features = ["rand_core"] } +signature = { version = "=2.3.0-pre.7", features = ["rand_core"] } hmac = "=0.13.0-pre.5" sha2 = { version = "=0.11.0-pre.5", default-features = false } digest = "=0.11.0-pre.10"