mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
24 lines
615 B
Rust
24 lines
615 B
Rust
//! Support code for encoding and decoding types.
|
|
|
|
// tidy-alphabetical-start
|
|
#![allow(internal_features)]
|
|
#![allow(rustc::internal)]
|
|
#![doc(test(attr(allow(unused_variables), deny(warnings), allow(internal_features))))]
|
|
#![feature(core_intrinsics)]
|
|
#![feature(min_specialization)]
|
|
#![feature(never_type)]
|
|
#![feature(sized_hierarchy)]
|
|
// tidy-alphabetical-end
|
|
|
|
// Allows macros to refer to this crate as `::rustc_serialize`.
|
|
#[cfg(test)]
|
|
extern crate self as rustc_serialize;
|
|
|
|
pub use self::serialize::{Decodable, Decoder, Encodable, Encoder};
|
|
|
|
mod serialize;
|
|
|
|
pub mod int_overflow;
|
|
pub mod leb128;
|
|
pub mod opaque;
|