From: Sachandhan Ganesh Date: Thu, 4 Feb 2021 00:23:45 +0000 (-0800) Subject: fix visibility and props X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=ce469e015da80f465276e40cb16b0280477b8c69;p=connect-rs.git fix visibility and props --- 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;