]> git.lizzy.rs Git - connect-rs.git/commitdiff
fix visibility and props
authorSachandhan Ganesh <sachan.ganesh@gmail.com>
Thu, 4 Feb 2021 00:23:45 +0000 (16:23 -0800)
committerSachandhan Ganesh <sachan.ganesh@gmail.com>
Thu, 4 Feb 2021 00:23:45 +0000 (16:23 -0800)
Cargo.lock
Cargo.toml
src/lib.rs

index 2655aff86209100bc6499298f6c0713c0a0682db..e81e23a8f25b1a92d3df7029fbfeae8f11c41159 100644 (file)
@@ -257,7 +257,7 @@ dependencies = [
 
 [[package]]
 name = "connect"
-version = "0.0.2"
+version = "0.0.3"
 dependencies = [
  "anyhow",
  "async-channel",
index ed910757d30026cdfda337e9946b4eec71760243..b52726656e3a24faad1e44dead518a948584d3d9 100644 (file)
@@ -1,10 +1,10 @@
 [package]
 name = "connect"
-version = "0.0.2"
+version = "0.0.3"
 edition = "2018"
 authors = ["Sachandhan Ganesh <sachan.ganesh@gmail.com>"]
 description = "message queue abstraction over async network streams"
-keywords = ["async", "network", "message", "queue", "aio"]
+keywords = ["async", "network", "message-queue", "mq", "aio"]
 categories = ["asynchronous", "network-programming", "rust-patterns", "encoding"]
 repository = "https://github.com/sachanganesh/connect-rs"
 readme = "README.md"
index c85c2cd8d99a5b50f05a257ec447454b7bd77f92..8a71a3760c734782b8d4e2244229a06d3e75fd33 100644 (file)
@@ -1,5 +1,5 @@
 mod reader;
-pub mod schema;
+pub(crate) mod schema;
 pub mod tcp;
 pub mod tls;
 mod writer;