-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathCargo.toml
59 lines (52 loc) · 1.4 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
[package]
name = "mpz-garble"
version = "0.1.0"
edition = "2021"
[lints]
workspace = true
[lib]
name = "mpz_garble"
[features]
default = ["mock"]
rayon = ["mpz-common/rayon"]
mock = ["mpz-ot/ideal"]
[dependencies]
mpz-circuits.workspace = true
mpz-common = { workspace = true, features = ["test-utils"] }
mpz-ot.workspace = true
mpz-garble-core.workspace = true
mpz-core.workspace = true
tlsn-utils.workspace = true
tlsn-utils-aio.workspace = true
serio.workspace = true
async-trait.workspace = true
prost.workspace = true
futures.workspace = true
futures-util.workspace = true
cipher.workspace = true
rand.workspace = true
rand_core.workspace = true
rand_chacha = { workspace = true }
thiserror.workspace = true
aes = { workspace = true }
derive_builder.workspace = true
itybity.workspace = true
tracing.workspace = true
opaque-debug.workspace = true
[dev-dependencies]
mpz-common = { workspace = true, features = ["test-utils", "ideal"] }
mpz-ot = { workspace = true, features = ["ideal"] }
rstest = { workspace = true }
criterion = { workspace = true, features = ["async_tokio"] }
tlsn-utils-aio = { workspace = true, features = ["duplex"] }
tokio = { workspace = true, features = [
"net",
"macros",
"rt",
"rt-multi-thread",
] }
async_executors = { version = "0.6", features = ["notwasm", "tokio_tp"] }
tracing-subscriber = { workspace = true, features = ["fmt"] }
[[bench]]
name = "deap"
harness = false