-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (44 loc) · 1.03 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
[package]
name = "maestro"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
benchmark-helper = ["criterion"]
default = ["clmul"]
verbose-timing = []
clmul = []
[dependencies]
rustls = {version = "0.22.1"}
rustls-pemfile = "2.0.0"
serde = {version = "1.0", features = ["derive"]}
toml = "0.8"
oneshot = "0.1.6"
itertools = "0.12.1"
lazy_static = {version = "1.4.0" }
criterion = {version ="0.4", optional = true }
rayon = "1.10.0"
rand = {version = "0.8.5"}
sha2 = "0.10.8"
rand_chacha = "0.3.1"
clap = {version = "4.4.13", features = ["derive"]}
[dev-dependencies]
# serial_test = "*"
criterion = "0.5.1"
[lib]
required-features = ["verbose-timing"]
[[bench]]
name = "gf2p64_mult_benchmark"
harness = false
required-features = ["clmul"]
[[bench]]
name = "gf2p64_ip_benchmark"
harness = false
required-features = ["clmul"]
[[bench]]
name = "clmul_bench"
harness = false
required-features = ["clmul"]
[[bench]]
name = "unpack_bitslice"
harness = false