forked from facebook/winterfell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 1.12 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
[package]
name = "winter-verifier"
version = "0.1.0"
description = "Winterfell STARK verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "zkp", "stark", "verifier"]
edition = "2018"
[lib]
bench = false
[features]
alloc = ["air/alloc", "crypto/alloc", "fri/alloc", "math/alloc", "utils/alloc"]
default = ["std"]
std = ["air/std", "crypto/std", "fri/std", "math/std", "utils/std"]
[dependencies]
utils = { version = "0.1", path = "../utils", package = "winter-utils", default-features = false }
math = { version = "0.1", path = "../math", package = "winter-math", default-features = false }
crypto = { version = "0.1", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.1", path = "../fri", package = "winter-fri", default-features = false }
air = { version = "0.1", path = "../air", package = "winter-air", default-features = false }
# Allow math in docs
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]