From b21244beac0b02958e2ebececbbd59845235306f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Mar 2025 23:22:26 +0000 Subject: [PATCH] build(deps): bump sec1 from 0.8.0-rc.3 to 0.8.0-rc.4 Bumps [sec1](https://github.com/RustCrypto/formats) from 0.8.0-rc.3 to 0.8.0-rc.4. - [Commits](https://github.com/RustCrypto/formats/compare/sec1/v0.8.0-rc.3...sec1/v0.8.0-rc.4) --- updated-dependencies: - dependency-name: sec1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 +++++++++++++++++-------- ssh-key/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1dd7ae66..f6249151 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,7 +103,7 @@ version = "0.4.0-rc.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0d7992d59cd95a984bde8833d4d025886eec3718777971ad15c58df0b070254a" dependencies = [ - "hybrid-array", + "hybrid-array 0.2.0-rc.11", ] [[package]] @@ -187,7 +187,7 @@ version = "0.6.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e43027691f1c055da3da4f7d96af09fcec420d435d5616e51f29afd0811c56a7" dependencies = [ - "hybrid-array", + "hybrid-array 0.2.0-rc.11", "num-traits", "rand_core", "subtle", @@ -201,7 +201,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c070b79a496dccd931229780ad5bbedd535ceff6c3565605a8e440e18e1aa2b" dependencies = [ "getrandom", - "hybrid-array", + "hybrid-array 0.2.0-rc.11", "rand_core", ] @@ -330,7 +330,7 @@ dependencies = [ "digest", "ff", "group", - "hybrid-array", + "hybrid-array 0.2.0-rc.11", "pkcs8", "rand_core", "sec1", @@ -426,6 +426,15 @@ dependencies = [ "zeroize", ] +[[package]] +name = "hybrid-array" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4dab50e193aebe510fe0e40230145820e02f48dae0cf339ea4204e6e708ff7bd" +dependencies = [ + "typenum", +] + [[package]] name = "inout" version = "0.2.0-rc.0" @@ -433,7 +442,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbc33218cf9ce7b927426ee4ad3501bcc5d8c26bf5fb4a82849a083715aca427" dependencies = [ "block-padding", - "hybrid-array", + "hybrid-array 0.2.0-rc.11", ] [[package]] @@ -732,13 +741,13 @@ dependencies = [ [[package]] name = "sec1" -version = "0.8.0-rc.3" +version = "0.8.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1988446eff153796413a73669dfaa4caa3f5ce8b25fac89e3821a39c611772e" +checksum = "a017a4aa8f0bd51e9d0184d98042dfe9285218fec098493f47d9a8aa0f1a3f27" dependencies = [ "base16ct", "der", - "hybrid-array", + "hybrid-array 0.3.0", "pkcs8", "subtle", "zeroize", diff --git a/ssh-key/Cargo.toml b/ssh-key/Cargo.toml index e458730e..2ef671cb 100644 --- a/ssh-key/Cargo.toml +++ b/ssh-key/Cargo.toml @@ -39,7 +39,7 @@ p384 = { version = "=0.14.0-pre.1", optional = true, default-features = false, f p521 = { version = "=0.14.0-pre.1", optional = true, default-features = false, features = ["ecdsa"] } rand_core = { version = "0.6.4", optional = true, default-features = false } rsa = { version = "=0.10.0-pre.3", optional = true, default-features = false, features = ["sha2"] } -sec1 = { version = "0.8.0-rc.3", optional = true, default-features = false, features = ["point"] } +sec1 = { version = "0.8.0-rc.4", optional = true, default-features = false, features = ["point"] } serde = { version = "1.0.16", optional = true } sha1 = { version = "=0.11.0-pre.4", optional = true, default-features = false, features = ["oid"] }