-
Notifications
You must be signed in to change notification settings - Fork 177
/
Cargo.toml
48 lines (41 loc) · 1.35 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 = "examples"
version = "0.10.1"
description = "Examples of using Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
categories = ["cryptography"]
edition = "2021"
rust-version = "1.82"
[lib]
bench = false
doc = false
[[bin]]
name = "winterfell"
path = "src/main.rs"
bench = false
doc = false
[features]
concurrent = ["winterfell/concurrent", "std"]
default = ["std"]
std = ["core-utils/std", "hex/std", "rand-utils", "winterfell/std"]
[dependencies]
blake3 = { version = "1.5", default-features = false }
core-utils = { version = "0.10", path = "../utils/core", package = "winter-utils", default-features = false }
hex = { version = "0.4", optional = true }
rand-utils = { version = "0.10", path = "../utils/rand", package = "winter-rand-utils", optional = true }
structopt = { version = "0.3", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-forest = { version = "0.1", features = ["ansi", "smallvec"], optional = true }
tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] }
winterfell = { version = "0.10", path = "../winterfell", default-features = false }
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "fibonacci"
harness = false
[[bench]]
name = "rescue"
harness = false