forked from 0xMiden/miden-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 987 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (30 loc) · 987 Bytes
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
[package]
name = "miden-processor"
version = "0.2.0"
description = "Miden VM processor"
authors = ["miden contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/maticnetwork/miden"
categories = ["emulators", "no-std"]
keywords = ["miden", "virtual-machine"]
edition = "2021"
rust-version = "1.62"
[lib]
bench = false
doctest = false
[[bench]]
name = "program_execution"
harness = false
[features]
default = ["std"]
std = ["vm-core/std", "winterfell/std", "log/std"]
[dependencies]
log = "0.4.14"
vm-core = { package = "miden-core", path = "../core", version = "0.2", default-features = false }
winterfell = { package = "winter-prover", version = "0.4", default-features = false }
[dev-dependencies]
criterion = "0.3"
logtest = { version = "2.0.0", default-features = false }
miden-assembly = { package = "miden-assembly", path = "../assembly", version = "0.2", default-features = false }
rand-utils = { package = "winter-rand-utils", version = "0.4" }