@@ -7,21 +7,34 @@ resolver = "2"
77
88# Dependencies shared by two or more workspace members.
99[workspace .dependencies ]
10- rand = " 0.8.7 "
11- rayon = " 1.12 .0"
10+ # ZKP Generation
11+ ark-ec = { version = " 0.5 .0" , default-features = false }
1212ark-ff = { version = " 0.5.0" , default-features = false }
1313ark-std = { version = " 0.5.0" , default-features = false }
14- zeroize = " 1.9 .0"
14+ ark-poly = { version = " 0.5 .0" , default-features = false }
1515ark-bn254 = { version = " 0.5.0" , features = [" std" ] }
16- criterion = { version = " 0.8.2" , features = [" html_reports" ] }
16+ ark-groth16 = { version = " 0.5.0" , default-features = false }
17+ ark-relations = { version = " 0.5.1" , features = [" std" ] }
18+ ark-serialize = { version = " 0.5.0" , default-features = false }
19+
20+ # Error Handling
1721thiserror = " 2.0.18"
22+
23+ # Utilities
24+ rand = " 0.8.7"
25+ rayon = " 1.12.0"
26+ zeroize = " 1.9.0"
1827num-bigint = { version = " 0.4.8" , default-features = false }
1928num-traits = " 0.2.19"
20- serde_json = " 1.0.150"
21- ark-groth16 = { version = " 0.5.0" , default-features = false }
2229rand_chacha = " 0.3.1"
2330tiny-keccak = { version = " 2.0.2" , features = [" keccak" ] }
24- ark-relations = { version = " 0.5.1" , features = [" std" ] }
31+
32+ # Serialization
33+ serde = { version = " 1.0.228" , features = [" derive" ] }
34+ serde_json = " 1.0.150"
35+
36+ # Benchmarking
37+ criterion = { version = " 0.8.2" , features = [" html_reports" ] }
2538
2639# Compilation profile for any non-workspace member.
2740# Dependencies are optimized, even in a dev build.
0 commit comments