]> git.lizzy.rs Git - connect-rs.git/blob - Cargo.toml
include gitignore and examples dir
[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
10 members = [
11     "examples/tcp-client",
12     "examples/tcp-echo-server",
13     "examples/tls-client",
14     "examples/tls-echo-server",
15 ]
16
17
18 [dependencies]
19 anyhow = "1.0.31"
20 async-channel = "1.4.0"
21 async-std = { version = "1.6.2", features = ["unstable"] }
22 async-tls = { version = "0.9.0", default-features = false, features = ["client", "server"]}
23 bytes = "0.5.5"
24 futures = "0.3.8"
25 log = "0.4"
26 protobuf = "2.18.1"
27 rustls = "0.18.0"
28
29 [build-dependencies]
30 protobuf-codegen-pure = "2.18.1"