-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathCargo.toml
54 lines (45 loc) · 996 Bytes
/
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-core"
version = "0.1.0"
edition = "2021"
[lib]
name = "mpz_core"
[lints]
workspace = true
[features]
default = ["cointoss", "rayon"]
cointoss = ["dep:rand_chacha"]
rayon = ["dep:rayon"]
[dependencies]
aes = { workspace = true, features = [] }
cipher.workspace = true
blake3.workspace = true
clmul.workspace = true
rand.workspace = true
rand_chacha = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"] }
thiserror.workspace = true
once_cell.workspace = true
itybity.workspace = true
opaque-debug.workspace = true
bcs = "0.1.5"
rand_core = "0.6.4"
bytemuck = { workspace = true, features = ["derive"] }
generic-array.workspace = true
rayon = { workspace = true, optional = true }
cfg-if.workspace = true
[dev-dependencies]
rstest.workspace = true
criterion.workspace = true
[[bench]]
name = "aes"
harness = false
[[bench]]
name = "ggm"
harness = false
[[bench]]
name = "prg"
harness = false
[[bench]]
name = "lpn"
harness = false