]> git.lizzy.rs Git - connect-rs.git/blob - Cargo.toml
remove unnecessary copies of local and peer addrs
[connect-rs.git] / Cargo.toml
1 [package]
2 name = "connect"
3 version = "0.1.3"
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", "mq", "aio"]
8 categories = ["asynchronous", "network-programming", "rust-patterns", "encoding"]
9 repository = "https://github.com/sachanganesh/connect-rs"
10 documentation = "https://docs.rs/connect/"
11 readme = "README.md"
12 license = "Apache-2.0"
13
14 [workspace]
15 members = [
16     "examples/*",
17 ]
18
19
20 [dependencies]
21 anyhow = "1.0.31"
22 async-channel = "1.4.0"
23 async-std = { version = "1.9.0", features = ["attributes", "unstable"] }
24 async-tls = { version = "0.9.0", default-features = false, features = ["client", "server"]}
25 bytes = "0.5.5"
26 futures = "0.3.8"
27 log = "0.4"
28 rustls = "0.18.0"