forked from Aphoh/poly-multiproof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (48 loc) · 1.68 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
60
61
[package]
name = "poly-multiproof"
authors = ["William Arnold (willarnold@berkeley.edu)"]
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ark-std = { version = "0.4.0", default-features = false }
ark-ec = { version = "0.4.0", default-features = false }
ark-ff = { version = "0.4.0", default-features = false }
ark-poly = { version = "0.4.0", default-features = false }
ark-serialize = { version = "0.4.0", default-features = false }
merlin = { version = "3", default-features = false }
thiserror = { version = "1.0.37", optional = true }
rayon = { version = "1.6", optional = true }
blst = { version = "0.3.12", optional = true, features = [ "no-threads"], default-features = false }
ark-bls12-381 = { version = "0.4.0", optional = true }
[dev-dependencies]
ark-bls12-381 = "0.4.0"
divan = "0.1.14"
rand = { version = "*", features = ["getrandom", "std"] }
lazy_static = "1.5.0"
rayon = "1.10.0"
[features]
default = ["std", "blst"]
std = ["thiserror", "ark-std/std", "ark-ec/std", "ark-ff/std", "ark-poly/std", "ark-serialize/std", "merlin/std"]
asm = ["std", "ark-ff/asm"]
print-trace = ["ark-std/print-trace"]
debug-transcript = ["std", "merlin/debug-transcript"]
blst = ["dep:blst", "ark-bls12-381"]
parallel = ["rayon", "std"]
[lib]
bench = false
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "pmp_bench"
harness = false
[[example]]
name = "data_availability_grid"
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "./doc/katex-header.html"]
[package.metadata.cargo-all-features]
allowlist = ["blst", "asm", "parallel", "std"]
[profile.profiling]
inherits = "release"
debug = true