-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
32 lines (30 loc) · 927 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
26
27
28
29
30
31
32
[package]
name = "ton_liteapi"
version = "0.2.0"
edition = "2021"
description = "Implementation of TON lite_api.tl interface"
repository = "https://github.com/tonstack/lite-client"
keywords = ["ton"]
categories = ["network-programming"]
license = "MIT"
authors = ["Vladimir Lebedev <[email protected]>"]
[dependencies]
adnl = "2.0.0"
tl-proto = { version = "0.4", features = ["bytes"] }
derivative = "2.2.0"
log = { version = "0.4.14", features = ["max_level_trace"] }
hex = "0.4.3"
thiserror = "1"
tokio = { version = "1", features = ["net", "io-util"] }
tower = { version = "0.4.13", features = ["make", "util", "buffer"] }
tokio-util = { version = "0.7.10" }
tokio-tower = "0.6.0"
rand = "0.8.5"
futures = "0.3"
pin-project = "1"
[dev-dependencies]
ureq = "2.4.0"
base64 = "0.13.0"
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
tokio = { version = "1.36", features = ["full"] }
env_logger = "0.11.3"