@@ -14,7 +14,7 @@ workspace = true
1414crypto-primitives-proc-macros = { workspace = true }
1515
1616# Core
17- num-traits = { version = " 0 " , default-features = false }
17+ num-traits = { workspace = true }
1818pastey = " 0"
1919thiserror = " 2"
2020
@@ -26,13 +26,13 @@ ark-serialize = { version = "0.5", default-features = false, optional = true }
2626num-bigint = { version = " 0.4" , default-features = false , optional = true }
2727
2828# Optional utility for which implementations are provided
29- rand = { version = " 0 " , default-features = false , optional = true }
29+ rand = { workspace = true , optional = true }
3030serde = { version = " 1" , default-features = false , optional = true }
3131zeroize = { version = " 1" , default-features = false , optional = true }
3232
3333[dev-dependencies ]
34- proptest = { version = " 1.8.0 " , default-features = false , features = [ " alloc " ] }
35- rand = { version = " 0 " }
34+ proptest = { workspace = true }
35+ rand = { workspace = true , features = [ " std_rng " ] }
3636
3737[features ]
3838default = [" std" ]
@@ -65,6 +65,9 @@ publish = false
6565
6666[workspace .dependencies ]
6767crypto-primitives-proc-macros = { path = " proc-macros" }
68+ num-traits = { version = " 0" , default-features = false }
69+ proptest = { version = " 1" , default-features = false , features = [" alloc" ] }
70+ rand = { version = " 0" , default-features = false }
6871
6972[workspace .lints .rust ]
7073missing_docs = " allow" # FIXME
0 commit comments