]> git.lizzy.rs Git - rust.git/blobdiff - src/libserialize/lib.rs
Rollup merge of #69266 - Zoxc:fix-source-map-race, r=wesleywiser
[rust.git] / src / libserialize / lib.rs
index e45d56c320cd800bf30605b4e4ac08cfec884ff3..b990e71bef0dd722aab3fe557c1fb18eae58916e 100644 (file)
@@ -4,12 +4,12 @@
 Core encoding and decoding interfaces.
 */
 
-#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
-       html_playground_url = "https://play.rust-lang.org/",
-       test(attr(allow(unused_variables), deny(warnings))))]
-
+#![doc(
+    html_root_url = "https://doc.rust-lang.org/nightly/",
+    html_playground_url = "https://play.rust-lang.org/",
+    test(attr(allow(unused_variables), deny(warnings)))
+)]
 #![feature(box_syntax)]
-#![feature(core_intrinsics)]
 #![feature(specialization)]
 #![feature(never_type)]
 #![feature(nll)]
 #![cfg_attr(test, feature(test))]
 #![allow(rustc::internal)]
 
-pub use self::serialize::{Decoder, Encoder, Decodable, Encodable};
+pub use self::serialize::{Decodable, Decoder, Encodable, Encoder};
 
-pub use self::serialize::{SpecializationError, SpecializedEncoder, SpecializedDecoder};
-pub use self::serialize::{UseSpecializedEncodable, UseSpecializedDecodable};
+pub use self::serialize::{SpecializationError, SpecializedDecoder, SpecializedEncoder};
+pub use self::serialize::{UseSpecializedDecodable, UseSpecializedEncodable};
 
-mod serialize;
 mod collection_impls;
+mod serialize;
 
 pub mod hex;
 pub mod json;
 
-pub mod opaque;
 pub mod leb128;
+pub mod opaque;