-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (52 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (52 loc) · 1.21 KB
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
[package]
name = "blockchaininfo"
version = "1.4.1"
edition = "2021"
description = "Live terminal dashboard tracking critical Bitcoin metrics."
readme = "README.md"
repository = "https://github.com/TH3BAT/Blockchaininfo"
license = "MIT"
authors = ["B. Farley <bfarley68@gmail.com>"]
keywords = [
"terminal",
"dashboard",
"RPC",
"bitcoin",
"full-node",
]
[[bin]]
name = "blockchaininfo"
path = "src/main.rs"
[lib]
name = "blockchaininfo"
path = "src/lib.rs"
# Benchmarks
[[bench]]
name = "benchmark"
harness = false
[dev-dependencies]
criterion = "0.8.1"
[dependencies]
tokio = { version = "1.52.3", features = ["full"] }
[target. 'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.5"
# reqwest 0.13+ breaks Tor-based RPC stability.
# Pinned intentionally.
reqwest = { version = "0.12.24", features = ["json", "socks", "rustls-tls"] }
serde_json = "1.0.150"
serde = { version = "1.0.228", features = ["derive"] }
chrono = "0.4.45"
toml = "1.1.2+spec-1.1.0" #"0.9.8"
num-format = "0.4.4"
colored = "3.1.1"
crossterm = "0.29.0"
tui = "0.19.0"
regex = "1.12.4"
rand = "0.10.1"
once_cell = "1.21.4"
futures = "0.3.32"
dashmap = "6.2.1"
lazy_static = "1.4"
hex = "0.4.3"
rpassword = "7.5.4"
unicode-width = "0.2.2"