From ce469e015da80f465276e40cb16b0280477b8c69 Mon Sep 17 00:00:00 2001 From: Sachandhan Ganesh Date: Wed, 3 Feb 2021 16:23:45 -0800 Subject: [PATCH] fix visibility and props --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2655aff..e81e23a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -257,7 +257,7 @@ dependencies = [ [[package]] name = "connect" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "async-channel", diff --git a/Cargo.toml b/Cargo.toml index ed91075..b527266 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "connect" -version = "0.0.2" +version = "0.0.3" edition = "2018" authors = ["Sachandhan Ganesh "] 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" diff --git a/src/lib.rs b/src/lib.rs index c85c2cd..8a71a37 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ mod reader; -pub mod schema; +pub(crate) mod schema; pub mod tcp; pub mod tls; mod writer; -- 2.44.0