forked from privacy-scaling-explorations/mpz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
104 lines (92 loc) · 2.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[workspace]
members = [
"mpz-core",
"garble/*",
"ot/*",
"mpz-circuits",
"mpz-circuits-macros",
"mpz-fields",
"share-conversion/*",
"matrix-transpose",
"clmul",
]
resolver = "2"
[workspace.lints.rust]
# unsafe_code = "forbid"
[workspace.lints.clippy]
# enum_glob_use = "deny"
[workspace.dependencies]
mpz-core = { path = "mpz-core" }
mpz-circuits = { path = "mpz-circuits" }
mpz-ot-core = { path = "ot/mpz-ot-core" }
mpz-ot = { path = "ot/mpz-ot" }
mpz-garble-core = { path = "garble/mpz-garble-core" }
mpz-garble = { path = "garble/mpz-garble" }
mpz-share-conversion-core = { path = "share-conversion/mpz-share-conversion-core" }
mpz-share-conversion = { path = "share-conversion/mpz-share-conversion" }
mpz-fields = { path = "mpz-fields" }
clmul = { path = "clmul" }
matrix-transpose = { path = "matrix-transpose" }
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" }
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" }
# rand
rand_chacha = "0.3"
rand = "0.8"
rand_core = "0.6"
# crypto
cipher = "0.4"
sha2 = "0.10"
blake3 = "1.3.3"
aes = "0.8"
ctr = "0.9"
digest = "0.10"
curve25519-dalek = "4.0.0-rc.0"
elliptic-curve = "0.11"
merlin = "3"
p256 = "0.10"
ghash_rc = { package = "ghash", version = "0.4" }
ark-ff = "0.4"
ark-secp256r1 = "0.4"
num-bigint = "0.4"
# async
async-trait = "0.1"
futures = "0.3"
futures-util = "0.3"
tokio = "1.23"
tokio-util = "0.7"
# serialization
ark-serialize = "0.4"
serde = "1.0"
serde_yaml = "0.9"
serde_arrays = "0.1"
bincode = "1.3.3"
prost-build = "0.9"
bytes = "1"
yamux = "0.10"
bytemuck = { version = "1.13", features = ["derive"] }
# testing
prost = "0.9"
rstest = "0.12"
pretty_assertions = "1"
criterion = "0.3"
# config
cfg-if = "1"
cpufeatures = "0.2"
rustversion = "1"
# error/log
tracing = "0.1"
tracing-subscriber = "0.3"
thiserror = "1"
opaque-debug = "0.3"
# misc
clap = "3"
regex = "1"
rayon = "1"
hex = "0.4"
lazy_static = "1"
derive_builder = "0.11"
once_cell = "1"
# DO NOT BUMP, SEE https://github.com/privacy-scaling-explorations/mpz/issues/61
generic-array = "0.14"
itybity = "0.2"
enum-try-as-inner = "0.1.0"