forked from 0xPolygonMiden/miden-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (21 loc) · 878 Bytes
/
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
[package]
name = "miden-prover"
version = "0.5.0"
description = "Miden VM prover"
authors = ["miden contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/0xPolygonMiden/miden-vm"
categories = ["cryptography", "emulators", "no-std"]
keywords = ["miden", "prover", "stark", "zkp"]
edition = "2021"
rust-version = "1.67"
[features]
concurrent = ["processor/concurrent", "std", "winter-prover/concurrent"]
default = ["std"]
std = ["air/std", "processor/std", "log/std", "winter-prover/std"]
[dependencies]
air = { package = "miden-air", path = "../air", version = "0.5", default-features = false }
log = { version = "0.4", default-features = false }
processor = { package = "miden-processor", path = "../processor", version = "0.5", default-features = false }
winter-prover = { package = "winter-prover", version = "0.6", default-features = false }