-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
54 lines (53 loc) · 1.55 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
[workspace]
resolver = "2"
members = [
"tonlibjson-sys",
"tl_parser",
"adnl-tcp",
"ton-client-util",
"tonlibjson-client",
"ton-liteserver-client",
"ton-contract",
"ton-grpc",
"tvm-grpc",
]
[workspace.dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
async-trait = "0.1"
tower = { version = "0.4", features = ["full"] }
tokio = { version = "1.41", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
tokio-stream = { version = "0.1", features = ["sync"] }
futures = "0.3"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-futures = { version = "0.2.5", features = ["std", "std-future", "futures-03"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["serde_derive"] }
base64 = "0.22"
hex = "0.4"
tracing-test = "0.2.5"
async-stream = "0.3.6"
toner = "0.3.2"
num-bigint = "0.4"
tonic = { version = "0.11", features = ["gzip"] }
tonic-reflection = "0.11"
tonic-health = "0.11"
tonic-build = "0.11"
prost = "0.12"
quick_cache = "0.5"
url = { version = "2.5.2", features = ["serde"] }
clap = { version = "4.5.20", features = ["derive"] }
humantime = "2.1.0"
uuid = { version = "1.11", features = ["v4", "fast-rng", "serde"] }
dashmap = "5.5"
pin-project = "1.1"
rand = "0.8"
bytes = "1.8"
thiserror = "1.0.65"
itertools = "0.13"
bitvec = "1.0.1"
metrics = "0.23.0"
reqwest = { version = "0.12.9", features = ["rustls-tls", "hickory-dns"], default-features = false }
hickory-resolver = { version = "0.24.1", features = ["tokio-runtime"] }
tokio-retry = "0.3"