-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (39 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
[package]
name = "dex_poc"
version = "0.1.0"
edition = "2021"
rust-version = "1.82"
[lib]
[features]
default = []
std = ["miden-assembly/std", "miden-objects/std", "miden-stdlib/std"]
async = ["miden-tx/async"]
# the testing feature is required to enable the account creation pow patch
testing = ["miden-objects/testing", "miden-tx/testing", "miden-lib/testing"]
with-debug-info = ["miden-stdlib/with-debug-info"]
[dependencies]
miden-lib = { git = "https://github.com/0xPolygonMiden/miden-base", branch = "next", features = ["std"] }
miden-objects = { git = "https://github.com/0xPolygonMiden/miden-base", branch = "next", features = ["std"]}
regex = { version = "1.10" }
walkdir = { version = "2.5" }
miden-assembly = "0.11.0"
miden-stdlib = "0.11.0"
miden-tx = { git = "https://github.com/0xPolygonMiden/miden-base", branch = "next", features = ["std"]}
[dev-dependencies]
miden-lib = { git = "https://github.com/0xPolygonMiden/miden-base", branch = "next", features = ["std"] }
miden-objects = { git = "https://github.com/0xPolygonMiden/miden-base", branch = "next", features = ["testing"] }
miden-tx = { git = "https://github.com/0xPolygonMiden/miden-base", branch = "next", features = ["std", "testing"]}
miden-prover = { version = "0.11", default-features = false }
vm-processor = { package = "miden-processor", version = "0.11", default-features = false }
winter-maybe-async = { version = "0.10" }
[build-dependencies]
regex = { version = "1.10" }
walkdir = { version = "2.5" }
miden-assembly = "0.11.0"
miden-stdlib = "0.11.0"
miden-lib = { git = "https://github.com/0xPolygonMiden/miden-base", branch = "next" }
[profile.test-release]
inherits = "release"
debug = true
debug-assertions = true
overflow-checks = true