]> git.lizzy.rs Git - connect-rs.git/blobdiff - Cargo.toml
remove dependency on protobuf and introduce basic custom wire format
[connect-rs.git] / Cargo.toml
index c15063640b392b76c1bb91f102e14e700502080d..999615a5e5931b3773f44f4f353fac01903b809c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "connect"
-version = "0.1.2"
+version = "0.1.3"
 edition = "2018"
 authors = ["Sachandhan Ganesh <sachan.ganesh@gmail.com>"]
 description = "message queue abstraction over async network streams"
@@ -13,23 +13,16 @@ license = "Apache-2.0"
 
 [workspace]
 members = [
-    "examples/tcp-client",
-    "examples/tcp-echo-server",
-    "examples/tls-client",
-    "examples/tls-echo-server",
+    "examples/*",
 ]
 
 
 [dependencies]
 anyhow = "1.0.31"
 async-channel = "1.4.0"
-async-std = { version = "1.6.2", features = ["unstable"] }
+async-std = { version = "1.6.2", features = ["attributes", "unstable"] }
 async-tls = { version = "0.9.0", default-features = false, features = ["client", "server"]}
 bytes = "0.5.5"
 futures = "0.3.8"
 log = "0.4"
-protobuf = "2.18.1"
 rustls = "0.18.0"
-
-[build-dependencies]
-protobuf-codegen-pure = "2.18.1"