-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 831 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 831 Bytes
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
[package]
name = "adnl"
description = "Implementation of Abstract Datagram Network Layer"
repository = "https://github.com/tonstack/adnl-rs"
keywords = ["ton"]
categories = ["network-programming"]
license = "MIT"
version = "2.0.0"
authors = ["Vladimir Lebedev <[email protected]>"]
edition = "2021"
[dependencies]
sha2 = "0.10.2"
ctr = "0.9.1"
aes = "0.8.1"
log = "0.4.14"
rand_core = "0.6.3"
tokio = { version = "1", features = ["net", "io-util"] }
tokio-util = { version = "0.7.10", features = ["codec"] }
thiserror = "1"
rand = "0.8.5"
futures = "0.3"
pin-project = "1"
hex = "0.4.3"
everscale-crypto = "0.2.1"
[dev-dependencies]
hex = "0.4.3"
tokio = { version = "1.36", features = ["rt-multi-thread", "macros"]}
base64 = "0.22.1"
[[example]]
name = "time"
[[example]]
name = "echo_client"
[[example]]
name = "echo_server"