-
Notifications
You must be signed in to change notification settings - Fork 248
/
Cargo.toml
60 lines (49 loc) · 1.86 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
[package]
name = "ark-poly"
description = "A library for efficient polynomial arithmetic via FFTs over finite fields"
documentation = "https://docs.rs/ark-poly/"
version.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
categories.workspace = true
include.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
metadata.docs.rs.workspace = true
metadata.release.workspace = true
keywords = ["cryptography", "finite-fields", "fft", "polynomials"]
[dependencies]
ark-ff.workspace = true
ark-serialize = { workspace = true, features = ["derive"] }
ark-std.workspace = true
rayon = { workspace = true, optional = true }
educe.workspace = true
hashbrown.workspace = true
[target.'cfg(all(target_has_atomic = "8", target_has_atomic = "16", target_has_atomic = "32", target_has_atomic = "64", target_has_atomic = "ptr"))'.dependencies]
ahash = { version = "0.8", default-features = false}
[target.'cfg(not(all(target_has_atomic = "8", target_has_atomic = "16", target_has_atomic = "32", target_has_atomic = "64", target_has_atomic = "ptr")))'.dependencies]
fnv = { version = "1.0", default-features = false }
[dev-dependencies]
ark-test-curves = { path = "../test-curves", default-features = false, features = [ "bls12_381_curve", "bn384_small_two_adicity_curve", "mnt4_753_curve"] }
criterion = "0.5.1"
[features]
default = []
std = [ "ark-std/std", "ark-ff/std", "ark-serialize/std" ]
parallel = [ "std", "ark-ff/parallel", "rayon", "ark-std/parallel", "ark-serialize/parallel" ]
[[bench]]
name = "fft"
path = "benches/fft.rs"
harness = false
[[bench]]
name = "dense_uv_polynomial"
path = "benches/dense_uv_polynomial.rs"
[[bench]]
name = "dense_multilinear"
path = "benches/dense_multilinear.rs"
harness = false
[[bench]]
name = "sparse_multilinear"
path = "benches/sparse_multilinear.rs"
harness = false