]> git.lizzy.rs Git - connect-rs.git/blob - Cargo.toml
move 'future goals' section into own issues
[connect-rs.git] / Cargo.toml
1 [package]
2 name = "connect"
3 version = "0.0.2"
4 authors = ["Sachandhan Ganesh <sachan.ganesh@gmail.com>"]
5 edition = "2018"
6 description = "message queue abstraction over async network streams"
7
8 [workspace]
9 members = [
10     "examples/tcp-client",
11     "examples/tcp-echo-server",
12     "examples/tls-client",
13     "examples/tls-echo-server",
14 ]
15
16
17 [dependencies]
18 anyhow = "1.0.31"
19 async-channel = "1.4.0"
20 async-std = { version = "1.6.2", features = ["unstable"] }
21 async-tls = { version = "0.9.0", default-features = false, features = ["client", "server"]}
22 bytes = "0.5.5"
23 futures = "0.3.8"
24 log = "0.4"
25 protobuf = "2.18.1"
26 rustls = "0.18.0"
27
28 [build-dependencies]
29 protobuf-codegen-pure = "2.18.1"