-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
25 lines (24 loc) · 920 Bytes
/
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
[package]
name = "block-metrics"
version = "0.1.0"
edition = "2021"
[dependencies]
ton_liteapi = { git = "https://github.com/tonstack/lite-client", branch = "async" }
ton_networkconfig = { git = "https://github.com/tonstack/lite-client", branch = "async" }
adnl = { git = "https://github.com/tonstack/adnl-rs", branch = "server" }
tokio = { version = "1", features = ["full"] }
tower = { version = "0.4.13", features = ["make", "util", "buffer"] }
tokio-util = "0.7.10"
ton_types = { git = "https://github.com/broxus/ton-labs-types.git" }
ton_block = { git = "https://github.com/hacker-volodya/ton-labs-block.git", features = ["ton"] }
axum = "0.7.2"
anyhow = "1.0"
prometheus = "0.13.3"
tokio-tower = "0.6.0"
async-trait = "0.1.80"
tracing = "0.1"
futures = "0.3"
serde_json = "1.0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "3.2.25", features = ["derive"] }
ureq = "2.4.0"