Crates.io | core_rustc-serialize |
lib.rs | core_rustc-serialize |
version | 0.3.20-v0.3.19patch1 |
source | src |
created_at | 2016-02-13 06:35:43.48828 |
updated_at | 2016-07-31 04:53:29.313989 |
description | Generic 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 |
homepage | https://github.com/rust-lang/rustc-serialize |
repository | https://github.com/rust-lang/rustc-serialize |
max_upload_size | |
id | 4161 |
size | 237,025 |
Serialization and deserialization support provided by the compiler in the form
of derive(RustcEncodable, RustcDecodable)
.
Add this to your Cargo.toml
:
[dependencies]
rustc-serialize = "0.3"
and this to your crate root:
extern crate rustc_serialize;