@@ -16,19 +16,19 @@ rust-version = "1.83"
1616rand_core = { version = " 0.9.0" , default-features = false }
1717const-oid = { version = " 0.10.0" , default-features = false }
1818subtle = { 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" ] }
2424zeroize = { version = " 1.5" , features = [" alloc" ] }
2525crypto-bigint = { version = " 0.7.0-pre.3" , default-features = false , features = [" zeroize" , " alloc" ] }
2626crypto-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" ] }
3030serdect = { 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" ] }
3232serde = { version = " 1.0.184" , optional = true , default-features = false , features = [" derive" ] }
3333
3434[dev-dependencies ]
@@ -40,9 +40,9 @@ rand_xorshift = "0.4"
4040rand_chacha = " 0.9"
4141rand = " 0.9"
4242rand_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" ] }
4646hex = { version = " 0.4.3" , features = [" serde" ] }
4747serde_json = " 1.0.138"
4848serde = { 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
7575crypto-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
10177crypto-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