forked from facebook/winterfell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (35 loc) · 889 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
[package]
name = "winter-math"
version = "0.1.0"
description = "Math library for the Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "finite-fields", "polynomials", "fft"]
edition = "2018"
[lib]
bench = false
[[bench]]
name = "fft"
harness = false
[[bench]]
name = "field"
harness = false
[[bench]]
name = "polynom"
harness = false
[features]
alloc = ["utils/alloc"]
concurrent = ["utils/concurrent", "std"]
default = ["std"]
std = ["rand", "utils/std"]
[dependencies]
utils = { version = "0.1", path = "../utils", package = "winter-utils", default-features = false }
rand = { version = "0.8", optional = true }
[dev-dependencies]
criterion = "0.3"
num-bigint = "0.4"
proptest = "1.0"
rand = "0.8"