forked from facebook/winterfell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 1.14 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
[package]
name = "winter-air"
version = "0.6.2"
description = "AIR components 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-air/0.6.2"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "arithmetization", "air"]
edition = "2021"
rust-version = "1.67"
[lib]
bench = false
[features]
default = ["std"]
std = ["crypto/std", "fri/std", "math/std", "utils/std"]
[dependencies]
crypto = { version = "0.6", path = "../crypto", package = "winter-crypto", default-features = false }
fri = { version = "0.6", path = "../fri", package = "winter-fri", default-features = false }
math = { version = "0.6", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.6", path = "../utils/core", package = "winter-utils", default-features = false }
[dev-dependencies]
rand-utils = { version = "0.6", path = "../utils/rand", package = "winter-rand-utils" }
# Allow math in docs
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]