-
Notifications
You must be signed in to change notification settings - Fork 182
/
Cargo.toml
51 lines (42 loc) · 1.2 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
[package]
name = "winter-math"
version = "0.11.0"
description = "Math library for the Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-math/0.11.0"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "finite-fields", "polynomials", "fft"]
edition = "2021"
rust-version = "1.82"
[lib]
bench = false
[[bench]]
name = "fft"
harness = false
[[bench]]
name = "field"
harness = false
[[bench]]
name = "polynom"
harness = false
[[bench]]
name = "poly_div_lagrange"
harness = false
[features]
concurrent = ["utils/concurrent", "std"]
default = ["std"]
std = ["utils/std"]
[dependencies]
serde = { version = "1.0", features = [ "derive" ], optional = true, default-features = false }
utils = { version = "0.11", path = "../utils/core", package = "winter-utils", default-features = false }
[dev-dependencies]
criterion = "0.5"
num-bigint = "0.4"
proptest = "1.4"
rand-utils = { version = "0.11", path = "../utils/rand", package = "winter-rand-utils" }
# Allow math in docs
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]