diff options
author | 2019-06-07 12:31:44 -0700 | |
---|---|---|
committer | 2019-06-07 12:31:44 -0700 | |
commit | 47fdf06e34ca8ae91281f05a1555923f3878aeec (patch) | |
tree | 8467bd59f40923637860a1396478d5a5a4fa027a /src | |
parent | 55aa530dc1169484135d479f8b0704617a09ac8f (diff) | |
download | bytes-47fdf06e34ca8ae91281f05a1555923f3878aeec.tar.gz bytes-47fdf06e34ca8ae91281f05a1555923f3878aeec.tar.zst bytes-47fdf06e34ca8ae91281f05a1555923f3878aeec.zip |
Make serde module private (#262)
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -87,8 +87,7 @@ pub use bytes::{Bytes, BytesMut}; // Optional Serde support #[cfg(feature = "serde")] -#[doc(hidden)] -pub mod serde; +mod serde; // Optional `Either` support #[cfg(feature = "either")] |