-
Notifications
You must be signed in to change notification settings - Fork 161
/
Cargo.toml
58 lines (52 loc) · 1.7 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
53
54
55
56
57
58
[package]
name = "miden-core"
version = "0.11.0"
description = "Miden VM core components"
documentation = "https://docs.rs/miden-core/0.11.0"
readme = "README.md"
categories = ["emulators", "no-std"]
keywords = ["instruction-set", "miden", "program"]
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]
default = ["std"]
diagnostics = ["dep:miette"]
std = [
"dep:parking_lot",
"memchr/std",
"miden-crypto/std",
"miden-formatting/std",
"math/std",
"winter-utils/std",
"thiserror/std",
]
[dependencies]
lock_api = { version = "0.4", features = ["arc_lock"] }
math = { package = "winter-math", version = "0.10", default-features = false }
memchr = { version = "2.7", default-features = false }
miden-crypto = { version = "0.12", default-features = false }
miden-formatting = { version = "0.1", default-features = false }
miette = { package = "miden-miette", version = "7.1", default-features = false, optional = true, features = [
"fancy-no-syscall",
"derive"
] }
num-derive = { version = "0.4", default-features = false }
num-traits = { version = "0.2", default-features = false }
parking_lot = { version = "0.12", optional = true }
thiserror = { package = "miden-thiserror", version = "1.0", default-features = false }
winter-utils = { package = "winter-utils", version = "0.10", default-features = false }
[dev-dependencies]
loom = "0.7"
proptest = "1.5"
rand-utils = { package = "winter-rand-utils", version = "0.10" }
[target.'cfg(loom)'.dependencies]
loom = "0.7"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] }