-
Notifications
You must be signed in to change notification settings - Fork 47
/
Cargo.toml
54 lines (46 loc) · 1.14 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
[package]
name = "mpz-ot"
version = "0.1.0"
edition = "2021"
[lints]
workspace = true
[lib]
name = "mpz_ot"
[features]
default = ["rayon"]
rayon = ["mpz-ot-core/rayon"]
ideal = ["mpz-common/ideal"]
[dependencies]
mpz-core.workspace = true
mpz-common.workspace = true
mpz-cointoss.workspace = true
mpz-ot-core.workspace = true
tlsn-utils-aio.workspace = true
async-trait.workspace = true
futures.workspace = true
rand.workspace = true
rand_core.workspace = true
rand_chacha.workspace = true
p256 = { workspace = true, optional = true }
thiserror.workspace = true
rayon = { workspace = true }
itybity.workspace = true
enum-try-as-inner.workspace = true
opaque-debug.workspace = true
serde = { workspace = true, optional = true }
serio.workspace = true
cfg-if.workspace = true
[dev-dependencies]
mpz-common = { workspace = true, features = ["test-utils", "ideal"] }
mpz-ot-core = { workspace = true, features = ["test-utils"] }
rstest = { workspace = true }
criterion = { workspace = true, features = ["async_tokio"] }
tokio = { workspace = true, features = [
"net",
"macros",
"rt",
"rt-multi-thread",
] }
[[bench]]
name = "ot"
harness = false