forked from 0xPolygonMiden/miden-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 1.29 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
[package]
name = "miden-test-utils"
version = "0.1.0"
description = "Test utilities for Miden VM programs"
authors = ["miden contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/0xPolygonMiden/miden-vm"
categories = ["development-tools::testing", "no-std"]
keywords = ["miden", "test", "virtual-machine"]
edition = "2021"
rust-version = "1.75"
[features]
default = ["std"]
std = ["assembly/std", "processor/std", "prover/std", "verifier/std", "vm-core/std", "winter-prover/std"]
[dependencies]
assembly = { package = "miden-assembly", path = "../assembly", version = "0.9", default-features = false }
processor = { package = "miden-processor", path = "../processor", version = "0.9", features = ["internals"], default-features = false }
prover = { package = "miden-prover", path = "../prover", version = "0.9", default-features = false }
test-case = "3.2"
verifier = { package = "miden-verifier", path = "../verifier", version = "0.9", default-features = false }
vm-core = { package = "miden-core", path = "../core", version = "0.9", default-features = false }
winter-prover = { package = "winter-prover", version = "0.8", default-features = false }
[target.'cfg(not(target_family = "wasm"))'.dependencies]
proptest = "1.4"
rand-utils = { package = "winter-rand-utils", version = "0.8" }