-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
63 lines (59 loc) · 2.1 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
59
60
61
62
63
[workspace]
members = [
"crates/types",
"crates/accounts",
"crates/cli/oracle",
"crates/cli/publisher",
"crates/cli/utils",
"crates/demo",
]
resolver = "1"
default-members = [
"crates/types",
"crates/accounts",
"crates/cli/oracle",
"crates/cli/publisher",
"crates/cli/utils",
"crates/demo"
]
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.package]
version = "0.1.0-alpha.1"
authors = ["Pragma <https://github.com/astraly-labs>"]
homepage = "https://www.pragma.build/"
edition = "2021"
repository = "https://github.com/astraly-labs/pragma-miden"
license = "MIT"
[workspace.dependencies]
pm-types = { path = "crates/types", default-features = false }
pm-accounts = { path = "crates/accounts", default-features = false }
pm-oracle-cli = { path = "crates/cli/oracle", default-features = false }
pm-publisher-cli = { path = "crates/cli/publisher", default-features = false }
pm-utils-cli = { path = "crates/cli/utils", default-features = false }
pm-demo = { path = "crates/demo", default-features = false }
anyhow = "1.0.93"
async-trait = "0.1.83"
rand = { version = "0.8", default-features = false }
rand_chacha = { version = "0.3", default-features = false }
lazy_static = "1.5.0"
clap = { version = "4.5.22", features = ["derive"] }
colored = "2.1.0"
thiserror = "1.0.61"
rusqlite = { version = "0.32" }
serde_json = "1.0.133"
serde = "1.0.215"
tokio = { version = "1.40.0", features = ["rt-multi-thread", "net", "macros"] }
chrono = "0.4"
prettytable-rs = "0.10"
futures = "0.3.31"
miden-processor = "0.12.0"
miden-assembly = { version="0.12.0",default-features = false, features = [
"testing", "std",
] }
miden-crypto = { version="0.13.2", default-features = false, features = ["executable"] }
miden-lib = { version="0.7", default-features = false, features = ["testing"] }
miden-objects = {version ="0.7", default-features = false,features = ["testing"] }
miden-tx = { version ="0.7", default-features = false, features = ["async", "concurrent"] }
miden-client = { version="0.7.0", features=["tonic", "sqlite", "concurrent","testing"]}
pyo3 = { version = "0.20.0", features = ["extension-module", "abi3-py37"] }