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
58 lines (53 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (53 loc) · 1.63 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "miden-processor"
version.workspace = true
description = "Miden VM processor"
documentation = "https://docs.rs/miden-processor"
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
exclude = ["*.snap"]
[lib]
bench = false
doctest = false
[features]
concurrent = ["std", "miden-air/concurrent"]
default = ["std"]
std = [
"miden-core/std",
"miden-debug-types/std",
"miden-utils-diagnostics/std",
"thiserror/std",
]
testing = ["miden-air/testing"]
# Pulls in the LogUp debug surface from miden-air (under `#[cfg(feature = "std")]`).
# NOTE: the real-trace bus debugger is not yet wired into the prover/processor paths,
# so today this feature only compiles in the LookupAir shape-validation walker.
bus-debugger = ["miden-air/std"]
[dependencies]
# Miden dependencies
miden-air.workspace = true
miden-core.workspace = true
miden-debug-types.workspace = true
miden-utils-diagnostics.workspace = true
miden-utils-indexing.workspace = true
# External dependencies
itertools.workspace = true
paste.workspace = true
rayon = { version = "1.10", default-features = false }
tracing.workspace = true
thiserror.workspace = true
[dev-dependencies]
miden-assembly = { workspace = true, features = ["testing"] }
miden-utils-testing.workspace = true
insta.workspace = true
pretty_assertions = { workspace = true, features = ["std"] }
proptest.workspace = true
rstest = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt"] }