• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benches/H03-May-2022-163143

src/H03-May-2022-6,6514,582

.cargo-checksum.jsonH A D03-May-202289 11

.gitignoreH A D11-Dec-201420 32

.travis.ymlH A D19-Nov-2016562 2521

Cargo.tomlH A D21-Apr-2017579 1916

LICENSE-APACHEH A D11-Dec-201410.6 KiB202169

LICENSE-MITH A D11-Dec-20141 KiB2622

README.mdH A D21-Apr-2017993 3221

appveyor.ymlH A D31-Jul-2015478 1815

README.md

1# rustc-serialize
2
3> **NOTE**: This crate is deprecated in favor of [`serde`]. No new feature
4> development will happen in this crate, although bug fixes proposed through PRs
5> will still be merged. It is very highly recommended by the Rust Library Team
6> that you use [`serde`], not this crate.
7
8[`serde`]: https://serde.rs
9
10Serialization and deserialization support provided by the compiler in the form
11of `derive(RustcEncodable, RustcDecodable)`.
12
13[![Linux Build Status](https://travis-ci.org/rust-lang-nursery/rustc-serialize.svg?branch=master)](https://travis-ci.org/rust-lang-nursery/rustc-serialize)
14[![Windows Build Status](https://ci.appveyor.com/api/projects/status/ka194de75aapwpft?svg=true)](https://ci.appveyor.com/project/alexcrichton/rustc-serialize)
15
16[Documentation](https://doc.rust-lang.org/rustc-serialize)
17
18## Usage
19
20Add this to your `Cargo.toml`:
21
22```toml
23[dependencies]
24rustc-serialize = "0.3"
25```
26
27and this to your crate root:
28
29```rust
30extern crate rustc_serialize;
31```
32