]> git.lizzy.rs Git - connect-rs.git/blobdiff - Cargo.toml
bump version to unused 0.1.2
[connect-rs.git] / Cargo.toml
index 43a5b4ad1a1a0cdb99233af1097180010522ae30..c15063640b392b76c1bb91f102e14e700502080d 100644 (file)
@@ -1,9 +1,23 @@
 [package]
 name = "connect"
-version = "0.0.2"
-authors = ["Sachandhan Ganesh <sachan.ganesh@gmail.com>"]
+version = "0.1.2"
 edition = "2018"
+authors = ["Sachandhan Ganesh <sachan.ganesh@gmail.com>"]
 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"
+
+[workspace]
+members = [
+    "examples/tcp-client",
+    "examples/tcp-echo-server",
+    "examples/tls-client",
+    "examples/tls-echo-server",
+]
 
 
 [dependencies]
@@ -13,7 +27,6 @@ async-std = { version = "1.6.2", features = ["unstable"] }
 async-tls = { version = "0.9.0", default-features = false, features = ["client", "server"]}
 bytes = "0.5.5"
 futures = "0.3.8"
-futures-lite = "1.11.3"
 log = "0.4"
 protobuf = "2.18.1"
 rustls = "0.18.0"