[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 "] 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"