]> git.lizzy.rs Git - connect-rs.git/blob - examples/tcp-echo-server/Cargo.toml
refactor read/write for correctness and ordering of messages
[connect-rs.git] / examples / tcp-echo-server / Cargo.toml
1 [package]
2 name = "tcp-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.9.0", features = ["attributes"] }
12 env_logger = "0.7"
13 log = "0.4"
14
15 connect = { path = "../../" }