11[package ]
22name = " hpke-rs-rust-crypto"
3- version = " 0.1.3 "
3+ version = " 0.2.0-pre.1 "
44authors = [
" Franziskus Kiefer <[email protected] >" ]
55edition = " 2021"
66license = " MPL-2.0"
@@ -10,14 +10,19 @@ readme = "Readme.md"
1010repository = " https://github.com/franziskuskiefer/hpke-rs"
1111
1212[dependencies ]
13- hpke-rs-crypto = { version = " 0.1.3 " , path = " ../traits" }
13+ hpke-rs-crypto = { version = " 0.2.0-pre.1 " , path = " ../traits" }
1414# Rust crypto
1515hkdf = { version = " 0.12" }
1616sha2 = { version = " 0.10" , default-features = false }
17- p256 = { version = " 0.13" , features = [" arithmetic" , " ecdh" ], default-features = false }
17+ p256 = { version = " 0.13" , features = [
18+ " arithmetic" ,
19+ " ecdh" ,
20+ ], default-features = false }
1821p384 = { version = " 0.13" , default-features = false }
1922x25519-dalek = { version = " 2" , features = [" static_secrets" ] }
20- chacha20poly1305 = { version = " 0.10" , default-features = false , features = [" alloc" ] }
23+ chacha20poly1305 = { version = " 0.10" , default-features = false , features = [
24+ " alloc" ,
25+ ] }
2126aes-gcm = { version = " 0.10" , default-features = false , features = [" aes" ] }
2227# Randomness
2328rand_core = { version = " 0.6" , features = [" getrandom" ] }
@@ -28,7 +33,10 @@ criterion = { version = "0.5", features = ["html_reports"] }
2833rand = { version = " 0.8" }
2934
3035[features ]
31- deterministic-prng = [" hpke-rs-crypto/std" ] # ⚠️ FOR TESTING ONLY.
36+ deterministic-prng = [
37+ " hpke-rs-crypto/std" ,
38+ " rand_core/std" ,
39+ ] # ⚠️ FOR TESTING ONLY.
3240
3341[[bench ]]
3442name = " bench_hkdf"
0 commit comments