remove _types from read module

This commit is contained in:
Ty Overby 2017-10-13 17:42:09 -07:00
parent 40889ec016
commit 251bbe22d4
2 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,8 @@ version = "0.9.2"
authors = ["Ty Overby <ty@pre-alpha.com>", "Francesco Mazzoli <f@mazzo.li>", "David Tolnay <dtolnay@gmail.com>", "Daniel Griffen"] authors = ["Ty Overby <ty@pre-alpha.com>", "Francesco Mazzoli <f@mazzo.li>", "David Tolnay <dtolnay@gmail.com>", "Daniel Griffen"]
exclude = ["logo.png", "tests/*", "examples/*", ".gitignore", ".travis.yml", "changelist.org", "LICENSE.md"] 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" repository = "https://github.com/TyOverby/bincode"
documentation = "https://docs.rs/bincode" documentation = "https://docs.rs/bincode"

View File

@ -43,7 +43,7 @@ mod ser;
mod de; mod de;
pub mod internal; pub mod internal;
pub mod read_types { pub mod read {
//! The types that the deserializer uses for optimizations //! The types that the deserializer uses for optimizations
pub use de::read::{SliceReader, BincodeRead, IoReader}; pub use de::read::{SliceReader, BincodeRead, IoReader};
} }