-
Notifications
You must be signed in to change notification settings - Fork 179
/
Cargo.toml
41 lines (35 loc) · 1.16 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
[package]
name = "winter-crypto"
version = "0.10.1"
description = "Cryptographic library for the Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-crypto/0.10.1"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "merkle-tree", "hash"]
edition = "2021"
rust-version = "1.82"
[lib]
bench = false
[[bench]]
name = "hash"
harness = false
[[bench]]
name = "merkle"
harness = false
required-features = ["concurrent"]
[features]
default = ["std"]
concurrent = ["utils/concurrent", "std"]
std = ["blake3/std", "math/std", "sha3/std", "utils/std"]
[dependencies]
blake3 = { version = "1.5", default-features = false }
math = { version = "0.10", path = "../math", package = "winter-math", default-features = false }
sha3 = { version = "0.10", default-features = false }
utils = { version = "0.10", path = "../utils/core", package = "winter-utils", default-features = false }
[dev-dependencies]
criterion = "0.5"
proptest = "1.4"
rand-utils = { version = "0.10", path = "../utils/rand", package = "winter-rand-utils" }