Skip to content

Commit 78ed71e

Browse files
committed
bump dependencies
1 parent cc7e734 commit 78ed71e

File tree

2 files changed

+79
-97
lines changed

2 files changed

+79
-97
lines changed

Cargo.lock

Lines changed: 65 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ rust-version = "1.83"
1616
rand_core = { version = "0.9.0", default-features = false }
1717
const-oid = { version = "0.10.0", default-features = false }
1818
subtle = { version = "2.6.1", default-features = false }
19-
digest = { version = "=0.11.0-pre.10", default-features = false, features = ["alloc", "oid"] }
20-
pkcs1 = { version = "0.8.0-rc.1", default-features = false, features = ["alloc", "pkcs8"] }
21-
pkcs8 = { version = "0.11.0-rc.3", default-features = false, features = ["alloc"] }
22-
signature = { version = "=3.0.0-pre", default-features = false, features = ["alloc", "digest", "rand_core"] }
23-
spki = { version = "0.8.0-rc.1", default-features = false, features = ["alloc"] }
19+
digest = { version = "0.11.0-rc.0", default-features = false, features = ["alloc", "oid"] }
20+
pkcs1 = { version = "0.8.0-rc.2", default-features = false, features = ["alloc", "pkcs8"] }
21+
pkcs8 = { version = "0.11.0-rc.4", default-features = false, features = ["alloc"] }
22+
signature = { version = "3.0.0-rc.0", default-features = false, features = ["alloc", "digest", "rand_core"] }
23+
spki = { version = "0.8.0-rc.2", default-features = false, features = ["alloc"] }
2424
zeroize = { version = "1.5", features = ["alloc"] }
2525
crypto-bigint = { version = "0.7.0-pre.3", default-features = false, features = ["zeroize", "alloc"] }
2626
crypto-primes = { version = "0.7.0-dev", default-features = false }
2727

2828
# optional dependencies
29-
sha1 = { version = "=0.11.0-pre.5", optional = true, default-features = false, features = ["oid"] }
29+
sha1 = { version = "0.11.0-rc.0", optional = true, default-features = false, features = ["oid"] }
3030
serdect = { version = "0.3.0", optional = true }
31-
sha2 = { version = "=0.11.0-pre.5", optional = true, default-features = false, features = ["oid"] }
31+
sha2 = { version = "0.11.0-rc.0", optional = true, default-features = false, features = ["oid"] }
3232
serde = { version = "1.0.184", optional = true, default-features = false, features = ["derive"] }
3333

3434
[dev-dependencies]
@@ -40,9 +40,9 @@ rand_xorshift = "0.4"
4040
rand_chacha = "0.9"
4141
rand = "0.9"
4242
rand_core = { version = "0.9.1", default-features = false }
43-
sha1 = { version = "=0.11.0-pre.5", default-features = false, features = ["oid"] }
44-
sha2 = { version = "=0.11.0-pre.5", default-features = false, features = ["oid"] }
45-
sha3 = { version = "=0.11.0-pre.5", default-features = false, features = ["oid"] }
43+
sha1 = { version = "0.11.0-rc.0", default-features = false, features = ["oid"] }
44+
sha2 = { version = "0.11.0-rc.0", default-features = false, features = ["oid"] }
45+
sha3 = { version = "0.11.0-rc.0", default-features = false, features = ["oid"] }
4646
hex = { version = "0.4.3", features = ["serde"] }
4747
serde_json = "1.0.138"
4848
serde = { version = "1.0.184", features = ["derive"] }
@@ -73,34 +73,10 @@ debug = true
7373
[patch.crates-io]
7474
# https://github.com/entropyxyz/crypto-primes/pull/74
7575
crypto-primes = { git = "https://github.com/entropyxyz/crypto-primes.git" }
76-
77-
aead = { git = "https://github.com/RustCrypto/traits.git" }
78-
crypto-common = { git = "https://github.com/RustCrypto/traits.git" }
79-
digest = { git = "https://github.com/RustCrypto/traits.git" }
80-
signature = { git = "https://github.com/RustCrypto/traits.git" }
81-
82-
der = { git = "https://github.com/RustCrypto/formats.git" }
83-
pkcs1 = { git = "https://github.com/RustCrypto/formats.git" }
84-
# https://github.com/RustCrypto/formats/pull/1844
85-
pkcs5 = { git = "https://github.com/RustCrypto/formats.git" }
86-
pkcs8 = { git = "https://github.com/RustCrypto/formats.git" }
87-
88-
sha1 = { git = "https://github.com/RustCrypto/hashes.git" }
89-
sha2 = { git = "https://github.com/RustCrypto/hashes.git" }
90-
sha3 = { git = "https://github.com/RustCrypto/hashes.git" }
91-
92-
# https://github.com/RustCrypto/password-hashes/pull/577
93-
# https://github.com/RustCrypto/password-hashes/pull/578
94-
# https://github.com/RustCrypto/password-hashes/pull/592
95-
pbkdf2 = { git = "https://github.com/RustCrypto/password-hashes.git" }
96-
scrypt = { git = "https://github.com/RustCrypto/password-hashes.git" }
97-
98-
hmac = { git = "https://github.com/RustCrypto/MACs.git" }
99-
10076
# https://github.com/RustCrypto/crypto-bigint/pull/824
10177
crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint.git" }
10278

103-
cbc = { git = "https://github.com/RustCrypto/block-modes.git" }
104-
ctr = { git = "https://github.com/RustCrypto/block-modes.git" }
105-
aes-gcm = { git = "https://github.com/RustCrypto/AEADs.git" }
106-
salsa20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" }
79+
pkcs1 = { git = "https://github.com/baloo/formats.git", branch = "baloo/pkcs/rc" }
80+
pkcs5 = { git = "https://github.com/baloo/formats.git", branch = "baloo/pkcs/rc" }
81+
pkcs8 = { git = "https://github.com/baloo/formats.git", branch = "baloo/pkcs/rc" }
82+
spki = { git = "https://github.com/baloo/formats.git", branch = "baloo/pkcs/rc" }

0 commit comments

Comments
 (0)