1#![allow(internal_features)]
5#![allow(rustc::internal)]
6#![doc(test(attr(allow(unused_variables), deny(warnings), allow(internal_features))))]
7#![feature(core_intrinsics)]
8#![feature(min_specialization)]
9#![feature(never_type)]
10#![feature(nonzero_internals)]
11#![feature(sized_hierarchy)]
12#[cfg(test)]
16extern crate self as rustc_serialize;
17
18pub use self::serialize::{Decodable, Decoder, Encodable, Encoder};
19
20mod serialize;
21
22pub mod int_overflow;
23pub mod leb128;
24pub mod opaque;