]> git.lizzy.rs Git - connect-rs.git/blob - Cargo.toml
add documentation prop
[connect-rs.git] / Cargo.toml
1 [package]
2 name = "connect"
3 version = "0.0.5"
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/tcp-client",
17     "examples/tcp-echo-server",
18     "examples/tls-client",
19     "examples/tls-echo-server",
20 ]
21
22
23 [dependencies]
24 anyhow = "1.0.31"
25 async-channel = "1.4.0"
26 async-std = { version = "1.6.2", features = ["unstable"] }
27 async-tls = { version = "0.9.0", default-features = false, features = ["client", "server"]}
28 bytes = "0.5.5"
29 futures = "0.3.8"
30 log = "0.4"
31 protobuf = "2.18.1"
32 rustls = "0.18.0"
33
34 [build-dependencies]
35 protobuf-codegen-pure = "2.18.1"