-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
77 lines (74 loc) · 1.98 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
70
71
72
73
74
75
76
77
[workspace]
resolver = "2"
members = [
"block-time",
"essentials",
"jaeger",
"kvdb",
"parachain-tracer",
"priority-channel",
"whois",
]
[workspace.package]
version = "0.2.34"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/paritytech/polkadot-introspector"
[workspace.dependencies]
async-channel = "2.3.1"
async-trait = "0.1.83"
bincode = "1.3.3"
clap = { version = "4.5.21", features = ["derive"] }
parity-scale-codec = { version = "3.6.12", default-features = false, features = [
"derive",
"full",
"bit-vec",
] }
color-eyre = "0.6.3"
colored = "2.1.0"
crossterm = "0.26.1"
env_logger = "0.10.2"
erased-serde = "0.3.31"
futures = "0.3.31"
futures-util = "0.3.27"
hex = "0.4.3"
itertools = "0.12.1"
log = "0.4.22"
mockall = "0.11.4"
parity-db = "0.4.13"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
rand = "0.8.5"
rasciigraph = "0.2.0"
reqwest = { version = "0.11.27" }
rocksdb = "0.21.0"
serde = "1.0.210"
serde-binary = "0.5"
serde_bytes = "0.11.15"
serde_derive = "1.0.138"
serde_json = "1.0.128"
serde_urlencoded = "0.7.1"
snap = "1.1.1"
ss58-registry = { version = "1.51.0", default-features = false }
strum = { version = "0.25.0", features = ["derive"] }
subxt = { default-features = false, features = [
"jsonrpsee",
"native",
"unstable-light-client",
], version = "0.38.0" }
base64 = "0.22.1"
thiserror = "1.0.69"
time = { version = "0.3.36", features = ["formatting"] }
tokio = { version = "1.38.0", features = [
"macros",
"rt",
"rt-multi-thread",
"signal",
] }
tokio-tungstenite = { version = "0.21.0", features = ["native-tls"] }
typed-builder = "0.14.0"
url = "2.5.2"
warp = { version = "0.3.7", features = ["tls"] }
polkadot-introspector-essentials = { path = "essentials" }
polkadot-introspector-priority-channel = { path = "priority-channel" }