]> git.lizzy.rs Git - connect-rs.git/blob - Cargo.toml
Merge branch 'main' of github.com:sachanganesh/connect-rs into main
[connect-rs.git] / Cargo.toml
1 [package]
2 name = "connect"
3 version = "0.0.2"
4 edition = "2018"
5 authors = ["Sachandhan Ganesh <sachan.ganesh@gmail.com>"]
6 description = "message queue abstraction over async network streams"
7 keywords = ["async", "network", "message", "queue", "aio"]
8 categories = ["asynchronous", "network-programming", "rust-patterns", "encoding"]
9 repository = "https://github.com/sachanganesh/connect-rs"
10 readme = "README.md"
11 license-file = "LICENSE"
12
13 [workspace]
14 members = [
15     "examples/tcp-client",
16     "examples/tcp-echo-server",
17     "examples/tls-client",
18     "examples/tls-echo-server",
19 ]
20
21
22 [dependencies]
23 anyhow = "1.0.31"
24 async-channel = "1.4.0"
25 async-std = { version = "1.6.2", features = ["unstable"] }
26 async-tls = { version = "0.9.0", default-features = false, features = ["client", "server"]}
27 bytes = "0.5.5"
28 futures = "0.3.8"
29 log = "0.4"
30 protobuf = "2.18.1"
31 rustls = "0.18.0"
32
33 [build-dependencies]
34 protobuf-codegen-pure = "2.18.1"