]> git.lizzy.rs Git - rust.git/blob - src/libserialize/lib.rs
Auto merge of #43648 - RalfJung:jemalloc-debug, r=alexcrichton
[rust.git] / src / libserialize / lib.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Support code for encoding and decoding types.
12
13 /*
14 Core encoding and decoding interfaces.
15 */
16
17 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
19        html_root_url = "https://doc.rust-lang.org/nightly/",
20        html_playground_url = "https://play.rust-lang.org/",
21        test(attr(allow(unused_variables), deny(warnings))))]
22 #![deny(warnings)]
23
24 #![feature(box_syntax)]
25 #![feature(core_intrinsics)]
26 #![feature(i128_type)]
27 #![feature(specialization)]
28 #![cfg_attr(test, feature(test))]
29
30 pub use self::serialize::{Decoder, Encoder, Decodable, Encodable};
31
32 pub use self::serialize::{SpecializationError, SpecializedEncoder, SpecializedDecoder};
33 pub use self::serialize::{UseSpecializedEncodable, UseSpecializedDecodable};
34
35 mod serialize;
36 mod collection_impls;
37
38 pub mod hex;
39 pub mod json;
40
41 pub mod opaque;
42 pub mod leb128;
43
44 mod rustc_serialize {
45     pub use serialize::*;
46 }