-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
69 lines (64 loc) · 1.95 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
64
65
66
67
68
69
[workspace]
members = [
"crates/types",
"crates/accounts",
"crates/cli/oracle",
"crates/cli/publisher",
"crates/cli/utils",
]
resolver = "1"
default-members = [
"crates/types",
"crates/accounts",
"crates/cli/oracle",
"crates/cli/publisher",
"crates/cli/utils",
]
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.package]
version = "0.1.0"
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 }
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.42.0", features = ["rt-multi-thread", "net", "macros"] }
chrono = "0.4"
prettytable-rs = "0.10"
miden-assembly = { version = "0.11", default-features = false, features = [
"testing",
] }
miden-crypto = { version = "0.12", default-features = false }
miden-lib = { version = "0.6.2", default-features = false, features = [
"concurrent",
"testing",
] }
miden-objects = { version = "0.6.2", default-features = false, features = [
"concurrent",
"testing",
] }
miden-tx = { version = "0.6.2", features = ["concurrent", "testing"] }
miden-client = { git = "https://github.com/0xPolygonMiden/miden-client", branch = "main", features = [
"concurrent",
"testing",
"sqlite",
"tonic",
] }