-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
54 lines (53 loc) · 1.83 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
[package]
name = "rs-platform-explorer"
version = "0.1.0"
license = "MIT"
edition = "2021"
default-run = "rs-platform-explorer"
rust-version = "1.80"
[dependencies]
strum = { version = "0.26.1", features = ["derive"] }
tui-realm-stdlib = "1.3.1"
tuirealm = "1.9.1"
bs58 = "0.5.0"
copypasta = "0.10.1"
dpp = { git = "https://github.com/dashpay/platform", tag = "v1.4.1", features = [
"client",
] }
dash-sdk = { git = "https://github.com/dashpay/platform", tag = "v1.4.1" }
drive = { git = "https://github.com/dashpay/platform", tag = "v1.4.1" }
drive-proof-verifier = { git = "https://github.com/dashpay/platform", tag = "v1.4.1" }
thiserror = "1.0.64"
serde = "1.0.197"
serde_json = "1.0.120"
toml = { version = "0.8.10", features = ["display"] }
dapi-grpc = { git = "https://github.com/dashpay/platform", tag = "v1.4.1", features = [
"client",
] }
rs-dapi-client = { git = "https://github.com/dashpay/platform", tag = "v1.4.1" }
tokio = { version = "1.36.0", features = ["full"] }
bincode = { version = "2.0.0-rc.3", features = ["serde"] }
strategy-tests = { git = "https://github.com/dashpay/platform", tag = "v1.4.1" }
simple-signer = { git = "https://github.com/dashpay/platform", tag = "v1.4.1" }
reqwest = { version = "0.12.3", features = ["json"] }
hex = { version = "0.4.3" }
itertools = "0.12.1"
crossterm = { version = "0.27.0", features = ["event-stream"] }
futures = "0.3.30"
walkdir = "2"
rand = "0.8"
memoize = "0.4.2"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
dotenvy = "0.15.7"
envy = "0.4.2"
clap = { version = "4.5.1", features = ["derive"] }
governor = "0.6.3"
tokio-util = "0.7.10"
chrono = "0.4"
chrono-humanize = "0.2.3"
dashmap = "5.5.3"
grovedb-version = "2.1.0"
sha2 = "0.10.8"
arboard = { version = "3.4.0", default-features = false, features = ["windows-sys"] }
hdrhistogram = "7.5.4"