]> git.lizzy.rs Git - connect-rs.git/blobdiff - Cargo.toml
refactor to have datagram already serialized in memory
[connect-rs.git] / Cargo.toml
index 2e7b1c984d87062dd70d1bd20966b562f88532fc..a532146d8eaf59531b316d886cf1f8c46fb0ebea 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "connect"
-version = "0.2.0"
+version = "0.3.0"
 edition = "2018"
 authors = ["Sachandhan Ganesh <sachan.ganesh@gmail.com>"]
 description = "message queue abstraction over async network streams"
@@ -12,7 +12,7 @@ readme = "README.md"
 license = "Apache-2.0"
 
 [package.metadata.docs.rs]
-features = ["async"]
+features = ["tls"]
 rustdoc-args = ["--cfg", "docsrs"]
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -24,17 +24,20 @@ members = [
 
 
 [features]
-tls = ["async-tls", "rustls"]
+tls = ["async-tls", "rustls", "rustls-pemfile"]
 
 [dependencies]
-anyhow = "1.0.31"
-async-std = { version = "1.9.0", features = ["unstable"] }
+anyhow = "1.0"
+async-std = { version = "1.12.0", features = ["unstable"] }
+async-stream = "0.3.0"
 bytes = "0.5.5"
-futures = "0.3.8"
+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.9.0", features = ["attributes"] }
\ No newline at end of file
+async-std = { version = "1.12.0", features = ["attributes"] }
\ No newline at end of file