29 lines
641 B
Rust
Raw Normal View History

//! Support code for encoding and decoding types.
/*
Core encoding and decoding interfaces.
*/
2019-12-22 17:42:04 -05:00
#![doc(
2020-09-23 21:51:56 +02:00
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
2019-12-22 17:42:04 -05:00
html_playground_url = "https://play.rust-lang.org/",
test(attr(allow(unused_variables), deny(warnings)))
)]
#![feature(box_syntax)]
#![feature(never_type)]
#![feature(nll)]
#![feature(associated_type_bounds)]
#![feature(min_const_generics)]
2015-04-10 11:39:53 -07:00
#![cfg_attr(test, feature(test))]
#![allow(rustc::internal)]
2019-12-22 17:42:04 -05:00
pub use self::serialize::{Decodable, Decoder, Encodable, Encoder};
mod collection_impls;
2019-12-22 17:42:04 -05:00
mod serialize;
pub mod json;
pub mod leb128;
2019-12-22 17:42:04 -05:00
pub mod opaque;