Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2017-07-06 | Support deserializing newtypes | Alex Crichton | -2/+11 | |
Closes #196 | ||||
2017-05-31 | Error when parsing numbers outside of f64's range | Alan Du | -0/+6 | |
2017-05-10 | Update de.rs | Raphaël Huchet | -1/+1 | |
2017-05-10 | add example for from_str | Raphaël Huchet | -0/+31 | |
2017-05-09 | Document that line/col indices are 0 based | Oliver Schneider | -0/+2 | |
2017-05-09 | Allow extracting the location of the error | Oliver Schneider | -0/+5 | |
2017-04-28 | Address comment and make test pass | Vincent Prouillet | -15/+21 | |
2017-04-25 | Deserialize enum in Value | Vincent Prouillet | -1/+3 | |
2017-04-25 | Remove everything other than enum variant code | Vincent Prouillet | -97/+0 | |
2017-04-24 | Allow to deserialize/serialize into enums | Vincent Prouillet | -1/+134 | |
Close #164 | ||||
2017-04-20 | Support serde 1.0.0 | Alex Crichton | -68/+68 | |
2017-04-12 | Stop taking references when not needed | Daniel Lockyer | -2/+2 | |
2017-04-12 | Simplify if-statements | Daniel Lockyer | -5/+5 | |
2017-04-12 | Switch from comparison to is_empty() | Daniel Lockyer | -3/+3 | |
2017-04-12 | Remove unneeded return statements | Daniel Lockyer | -3/+3 | |
2017-04-05 | Replace unwrap with expect in public methods | Matthias Endler | -3/+3 | |
2017-03-31 | Fix backcompat with array definitions | Alex Crichton | -1/+6 | |
2017-02-08 | Implement Deserializer::set_require_newline_after_table | Alex Crichton | -6/+26 | |
2017-02-08 | Rewrite crate with serde support from ground up | Alex Crichton | -0/+1195 | |
This commit completely rewrites this crate from the ground up, supporting serde at the lowest levels as I believe serde support was intended to do. This is a major change from the previous versions of this crate, with a summary of changes being: * Serialization directly to TOML is now supported without going through a `Value` first. * Deserialization directly from TOML is now supported without going through a `Value`. Note that due to the TOML format some values still are buffered in intermediate memory, but overall this should be at a minimum now. * The API of `Value` was overhauled to match the API of `serde_json::Value`. The changes here were to: * Add `is_*` accessors * Add `get` and `get_mut` for one-field lookups. * Implement panicking lookups through `Index` The old `index` methods are now gone in favor of `get` and `Index` implementations. * A `Datetime` type has been added to represent a TOML datetime in a first-class fashion. Currently this type provides no accessors other than a `Display` implementation, but the idea is that this will grow support over time for decomposing the date. * Support for the `rustc-serialize` crate has been dropped, that'll stay on the 0.2 and 0.1 release trains. * This crate no longer supports the detection of unused fields, for that though you can use the `serde_ignored` crate on crates.io |