From 251bbe22d4e5f273f3261c2d244b751ff41d660b Mon Sep 17 00:00:00 2001 From: Ty Overby Date: Fri, 13 Oct 2017 17:42:09 -0700 Subject: [PATCH] remove _types from read module --- Cargo.toml | 3 ++- src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 25705c8..a1bdf40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,8 @@ version = "0.9.2" authors = ["Ty Overby ", "Francesco Mazzoli ", "David Tolnay ", "Daniel Griffen"] exclude = ["logo.png", "tests/*", "examples/*", ".gitignore", ".travis.yml", "changelist.org", "LICENSE.md"] -publish = true +# renamed `read_types` to `read` +publish = false repository = "https://github.com/TyOverby/bincode" documentation = "https://docs.rs/bincode" diff --git a/src/lib.rs b/src/lib.rs index ae1e1ab..85feed4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -43,7 +43,7 @@ mod ser; mod de; pub mod internal; -pub mod read_types { +pub mod read { //! The types that the deserializer uses for optimizations pub use de::read::{SliceReader, BincodeRead, IoReader}; }