-
Notifications
You must be signed in to change notification settings - Fork 162
/
Cargo.toml
37 lines (33 loc) · 1.32 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
[package]
name = "miden-processor"
version = "0.11.0"
description = "Miden VM processor"
documentation = "https://docs.rs/miden-processor/0.11.0"
readme = "README.md"
categories = ["emulators", "no-std"]
keywords = ["miden", "virtual-machine"]
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]
concurrent = ["std", "winter-prover/concurrent"]
default = ["std"]
std = ["vm-core/std", "winter-prover/std"]
testing = ["miden-air/testing"]
[dependencies]
miden-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-prover = { package = "winter-prover", version = "0.10", default-features = false }
[dev-dependencies]
assembly = { package = "miden-assembly", path = "../assembly", version = "0.11", default-features = false }
logtest = { version = "2.0", default-features = false }
test-utils = { package = "miden-test-utils", path = "../test-utils" }
winter-fri = { package = "winter-fri", version = "0.10" }
winter-utils = { package = "winter-utils", version = "0.10" }