forked from maxgillett/winterfell
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
48 lines (41 loc) · 1.29 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.4.0"
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", path = "../winterfell", default-features = false }
core-utils = { version = "0.4", path = "../utils/core", package = "winter-utils", default-features = false }
rand-utils = { version = "0.4", 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 }
blake2 = { package = "blake2-rfc", version = "0.2"}
env_logger = { version = "0.9", default-features = false }
structopt = { version = "0.3", default-features = false }
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "fibonacci"
harness = false
[[bench]]
name = "rescue"
harness = false