]> git.lizzy.rs Git - connect-rs.git/blobdiff - Cargo.toml
add documentation prop
[connect-rs.git] / Cargo.toml
index e8c34c968ab383fd503d01183df777d59490be98..741c860850103800662bfedb21a4e78ee38bb951 100644 (file)
@@ -1,19 +1,31 @@
 [package]
 name = "connect"
-version = "0.0.2"
-authors = ["Sachandhan Ganesh <sachan.ganesh@gmail.com>"]
+version = "0.0.5"
 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]
 anyhow = "1.0.31"
 async-channel = "1.4.0"
-async-std = { version = "1.6.2", features = ["tokio02", "unstable"] }
+async-std = { version = "1.6.2", features = ["unstable"] }
 async-tls = { version = "0.9.0", default-features = false, features = ["client", "server"]}
-async-trait = "0.1.39"
 bytes = "0.5.5"
-dashmap = "3.11.10"
 futures = "0.3.8"
 log = "0.4"
 protobuf = "2.18.1"