forked from 0xPolygonMiden/miden-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 1.05 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
[package]
name = "miden-air"
version = "0.9.2"
description = "Algebraic intermediate representation of Miden VM processor"
authors = ["miden contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/0xPolygonMiden/miden-vm"
documentation = "https://docs.rs/miden-air/0.9.2"
categories = ["cryptography", "no-std"]
keywords = ["air", "arithmetization", "crypto", "miden"]
edition = "2021"
rust-version = "1.75"
[lib]
bench = false
doctest = false
[[bench]]
name = "compute_op_flags"
harness = false
[[bench]]
name = "enforce_stack_constraint"
harness = false
[features]
default = ["std"]
std = ["vm-core/std", "winter-air/std"]
internals = []
[dependencies]
vm-core = { package = "miden-core", path = "../core", version = "0.9", default-features = false }
winter-air = { package = "winter-air", version = "0.8", default-features = false }
winter-prover = { package = "winter-prover", version = "0.8", default-features = false }
[dev-dependencies]
criterion = "0.5"
proptest = "1.3"
rand-utils = { package = "winter-rand-utils", version = "0.8" }