forked from facebook/winterfell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (41 loc) · 1.7 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
[package]
name = "winter-prover"
version = "0.9.0"
description = "Winterfell STARK prover"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-prover/0.9.0"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "zkp", "stark", "prover"]
edition = "2021"
rust-version = "1.78"
[lib]
bench = false
[[bench]]
name = "row_matrix"
harness = false
[[bench]]
name = "lagrange_kernel"
harness = false
[features]
async = ["async-trait", "maybe_async/async"]
concurrent = ["crypto/concurrent", "math/concurrent", "fri/concurrent", "utils/concurrent", "std"]
default = ["std"]
std = ["air/std", "crypto/std", "fri/std", "math/std", "utils/std"]
[dependencies]
air = { version = "0.9", path = "../air", package = "winter-air", default-features = false }
async-trait = { version = "0.1.80", optional = true }
crypto = { version = "0.9", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.9", path = '../fri', package = "winter-fri", default-features = false }
math = { version = "0.9", path = "../math", package = "winter-math", default-features = false }
maybe_async = { version = "0.9", path = "../utils/maybe_async", package = "winter-maybe-async"}
tracing = { version = "0.1", default-features = false, features = ["attributes"]}
utils = { version = "0.9", path = "../utils/core", package = "winter-utils", default-features = false }
[dev-dependencies]
criterion = "0.5"
rand-utils = { version = "0.9", path = "../utils/rand", package = "winter-rand-utils" }
# Allow math in docs
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]