core_rustc-serialize

Crates.iocore_rustc-serialize
lib.rscore_rustc-serialize
version0.3.20-v0.3.19patch1
sourcesrc
created_at2016-02-13 06:35:43.48828
updated_at2016-07-31 04:53:29.313989
descriptionGeneric serialization/deserialization support corresponding to the `derive(RustcEncodable, RustcDecodable)` mode in the compiler. Also includes support for hex, base64, and json encoding and decoding. This version does not depend on std, only on core+collections
homepagehttps://github.com/rust-lang/rustc-serialize
repositoryhttps://github.com/rust-lang/rustc-serialize
max_upload_size
id4161
size237,025
(jethrogb)

documentation

https://doc.rust-lang.org/rustc-serialize

README

rustc-serialize

Serialization and deserialization support provided by the compiler in the form of derive(RustcEncodable, RustcDecodable).

Linux Build Status Windows Build Status

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]
rustc-serialize = "0.3"

and this to your crate root:

extern crate rustc_serialize;
Commit count: 300

cargo fmt