@@ -16,19 +16,19 @@ rust-version = "1.83"
16
16
rand_core = { version = " 0.9.0" , default-features = false }
17
17
const-oid = { version = " 0.10.0" , default-features = false }
18
18
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" ] }
24
24
zeroize = { version = " 1.5" , features = [" alloc" ] }
25
25
crypto-bigint = { version = " 0.7.0-pre.3" , default-features = false , features = [" zeroize" , " alloc" ] }
26
26
crypto-primes = { version = " 0.7.0-dev" , default-features = false }
27
27
28
28
# 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" ] }
30
30
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" ] }
32
32
serde = { version = " 1.0.184" , optional = true , default-features = false , features = [" derive" ] }
33
33
34
34
[dev-dependencies ]
@@ -40,9 +40,9 @@ rand_xorshift = "0.4"
40
40
rand_chacha = " 0.9"
41
41
rand = " 0.9"
42
42
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" ] }
46
46
hex = { version = " 0.4.3" , features = [" serde" ] }
47
47
serde_json = " 1.0.138"
48
48
serde = { version = " 1.0.184" , features = [" derive" ] }
@@ -73,34 +73,10 @@ debug = true
73
73
[patch .crates-io ]
74
74
# https://github.com/entropyxyz/crypto-primes/pull/74
75
75
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
-
100
76
# https://github.com/RustCrypto/crypto-bigint/pull/824
101
77
crypto-bigint = { git = " https://github.com/RustCrypto/crypto-bigint.git" }
102
78
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