forked from facebook/winterfell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.25 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
[package]
name = "examples"
version = "0.4.2"
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.60"
[lib]
bench = false
doc = false
[[bin]]
name = "winterfell"
path = "src/main.rs"
bench = false
doc = false
[features]
concurrent = ["winterfell/concurrent", "std"]
default = ["std"]
std = ["hex/std", "winterfell/std", "core-utils/std", "rand-utils"]
[dependencies]
winterfell = { version="0.4.2", path = "../winterfell", default-features = false }
core-utils = { version = "0.4.2", path = "../utils/core", package = "winter-utils", default-features = false }
rand-utils = { version = "0.4.2", path = "../utils/rand", package = "winter-rand-utils", optional = true }
hex = { version = "0.4", optional = true }
log = { version = "0.4", default-features = false }
blake3 = { version = "1.0", default-features = false }
env_logger = { version = "0.9", default-features = false }
structopt = { version = "0.3", default-features = false }
[dev-dependencies]
criterion = "0.4"
[[bench]]
name = "fibonacci"
harness = false
[[bench]]
name = "rescue"
harness = false