]> git.lizzy.rs Git - connect-rs.git/blob - examples/tls-echo-server/Cargo.toml
refactor to have datagram already serialized in memory
[connect-rs.git] / examples / tls-echo-server / Cargo.toml
1 [package]
2 name = "tls-echo-server"
3 version = "0.1.0"
4 authors = ["Sachandhan Ganesh <sachan.ganesh@gmail.com>"]
5 edition = "2018"
6
7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9 [dependencies]
10 anyhow = "1.0"
11 async-std = { version = "1.12.0", features = ["attributes"] }
12 async-tls = { version = "0.11.0", default-features = false, features = ["client", "server"] }
13 rustls = { version = "0.19.0" }
14 rustls-pemfile = { version = "1.0.1" }
15 env_logger = "0.7"
16 log = "0.4"
17
18 connect = { path = "../../", features = ["tls"] }