-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathCargo.toml
52 lines (46 loc) · 1.75 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
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "miden-objects"
version = "0.7.2"
description = "Core components of the Miden rollup"
readme = "README.md"
categories = ["no-std"]
keywords = ["miden", "objects"]
license.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
edition.workspace = true
[[bench]]
name = "account_seed"
harness = false
[lib]
bench = false
[features]
default = ["std"]
std = ["assembly/std", "miden-crypto/std", "miden-verifier/std", "vm-core/std", "vm-processor/std", "dep:toml", "dep:serde"]
testing = ["dep:winter-rand-utils", "dep:rand", "dep:rand_xoshiro"]
[dependencies]
assembly = { workspace = true }
log = { version = "0.4", optional = true }
miden-crypto = { workspace = true }
miden-verifier = { workspace = true }
rand = { workspace = true, optional = true }
rand_xoshiro = { version = "0.6.0", default-features = false, optional = true }
semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["derive"], optional = true }
toml = { version = "0.8", optional = true }
thiserror = { workspace = true }
vm-core = { workspace = true }
vm-processor = { workspace = true }
winter-rand-utils = { version = "0.11", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
[dev-dependencies]
pprof = { version = "0.14.0", default-features = false, features = ["criterion", "flamegraph"] }
anyhow = { version = "1.0.93", default-features = false, features = ["std", "backtrace"]}
assert_matches = { workspace = true }
criterion = { version = "0.5", default-features = false, features = ["html_reports"] }
miden-objects = { path = ".", features = ["testing"] }
rstest = { version = "0.23" }
tempfile = { version = "3.14" }