-
Notifications
You must be signed in to change notification settings - Fork 47
/
Cargo.toml
49 lines (41 loc) · 1.05 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
[package]
name = "mpz-ot-core"
version = "0.1.0"
edition = "2021"
[lints]
workspace = true
[lib]
name = "mpz_ot_core"
[features]
default = ["rayon", "test-utils"]
rayon = ["dep:rayon", "itybity/rayon", "blake3/rayon"]
test-utils = []
[dependencies]
mpz-core.workspace = true
clmul.workspace = true
matrix-transpose.workspace = true
tlsn-utils.workspace = true
aes.workspace = true
ctr.workspace = true
blake3.workspace = true
cipher.workspace = true
rand.workspace = true
rand_core.workspace = true
rand_chacha.workspace = true
rayon = { workspace = true, optional = true }
curve25519-dalek = { workspace = true, features = ["serde", "rand_core"] }
serde = { workspace = true, features = ["derive"] }
thiserror.workspace = true
derive_builder.workspace = true
itybity.workspace = true
opaque-debug.workspace = true
cfg-if.workspace = true
bytemuck = { workspace = true, features = ["derive"] }
enum-try-as-inner.workspace = true
[dev-dependencies]
rstest.workspace = true
criterion.workspace = true
pretty_assertions.workspace = true
[[bench]]
name = "ot"
harness = false