-
Notifications
You must be signed in to change notification settings - Fork 161
/
Cargo.toml
28 lines (25 loc) · 928 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
24
25
26
27
28
[package]
name = "miden-verifier"
version = "0.11.0"
description="Miden VM execution verifier"
documentation = "https://docs.rs/miden-verifier/0.11.0"
readme = "README.md"
categories = ["cryptography", "no-std"]
keywords = ["miden", "stark", "verifier", "zkp"]
license.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
edition.workspace = true
[lib]
bench = false
doctest = false
[features]
default = ["std"]
std = ["air/std", "vm-core/std", "winter-verifier/std"]
[dependencies]
air = { package = "miden-air", path = "../air", version = "0.11", default-features = false }
tracing = { version = "0.1", default-features = false, features = ["attributes"] }
vm-core = { package = "miden-core", path = "../core", version = "0.11", default-features = false }
winter-verifier = { package = "winter-verifier", version = "0.10", default-features = false }