-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (35 loc) · 1.21 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "connect"
version = "0.3.0"
edition = "2018"
authors = ["Sachandhan Ganesh <[email protected]>"]
description = "message queue abstraction over async network streams"
keywords = ["async", "network", "message-queue", "mq", "aio"]
categories = ["asynchronous", "network-programming", "rust-patterns", "encoding"]
repository = "https://github.com/sachanganesh/connect-rs"
documentation = "https://docs.rs/connect/"
readme = "README.md"
license = "Apache-2.0"
[package.metadata.docs.rs]
features = ["tls"]
rustdoc-args = ["--cfg", "docsrs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"examples/*",
]
[features]
tls = ["async-tls", "rustls", "rustls-pemfile"]
[dependencies]
anyhow = "1.0"
async-std = { version = "1.12.0", features = ["unstable"] }
async-stream = "0.3.0"
bytes = "0.5.5"
futures = "0.3"
futures-lite = "1.11"
log = "0.4"
async-tls = { version = "0.11.0", default-features = false, features = ["client", "server"], optional = true }
rustls = { version = "0.19.0", optional = true }
rustls-pemfile = { version = "1.0.1", optional = true }
[dev-dependencies]
async-std = { version = "1.12.0", features = ["attributes"] }