remove _types from read module
This commit is contained in:
parent
40889ec016
commit
251bbe22d4
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue