Go to file
2015-02-06 22:57:50 +01:00
benches Follow rust std: fmt::Writer is implemented by String 2015-02-06 22:23:16 +01:00
serde2 Ignore serde2/Cargo.lock in git 2015-02-06 22:57:50 +01:00
serde_macros Remove unneeded mut specifiers 2015-02-06 22:23:16 +01:00
src Follow rustc: New destructor semantics 2015-02-06 22:27:19 +01:00
tests Follow rust std: fmt::Show was renamed to fmt::Debug 2015-02-06 22:23:16 +01:00
.gitignore Ignore serde2/Cargo.lock in git 2015-02-06 22:57:50 +01:00
.travis.yml Add cargo build to .travis 2014-09-07 01:54:57 -07:00
Cargo.toml update to rust HEAD, switch to rustc_serialize 2015-01-04 17:18:50 -08:00
LICENSE Optimize serialization 2014-06-22 10:33:45 -04:00
LICENSE-APACHE Optimize serialization 2014-06-22 10:33:45 -04:00
LICENSE-MIT Optimize serialization 2014-06-22 10:33:45 -04:00
README.md Update README.md 2014-09-07 22:15:16 -07:00

Experimental Rust Serialization Library.

Build Status

This is an experiment to modernize rust's libserialize library. It is designed to implement https://github.com/rust-lang/rfcs/pull/22. rust-serde is an attempt to address a major shortcoming in libserialize. For normal structures, when you say you want to deserialize into:

struct Foo {
    x: int,
    y: int,
}

libserialize's deserializer essentially asks for:

  • Is the next value a struct named "Foo"? If not, error.
  • Is the next field named "x"? If not, error.
  • Is the next value an "int"? If not, error.
  • Is the next field named "y"? If not, error.
  • Is the next value an "int"? If not, error.
  • Is the struct finished? If not, error.

While this works for user defined structures, it cannot support deserializing into a value like json::Json, which is an enum that can represent every JSON value. In order to support that, it needs to be able to do some lookahead:

  • What is the next value type?
    • If a struct, parse a struct.
    • If an integer, parse an integer.
    • ...

More formally, libserialize implements a LL(0) grammar, whereas json::Json requires a LL(1) grammar. rust-serde provides this by implementing a serializer and deserializer that produces a tagged token stream of values. This enables a Deserializable for json::Json to look at the next token before deciding on how to parse the value.


There is now also a new library variation called serde2. This removes the need for tagged values and replaces them with a Visitor pattern. This pattern is very similar to the Iterator pattern, but it threads some custom state through visiting each type. This gets many of the benefits of the serde library without needing to always pay for tagging the variants.