aboutsummaryrefslogtreecommitdiff
path: root/src/de.rs
AgeCommit message (Collapse)AuthorLines
2018-07-11Merge pull request #251 from ehuss/datetime-spaceAlex Crichton-0/+11
0.5: Support space separator in datetime.
2018-07-110.5: Support floats nan, inf, and +/-0.0.Eric Huss-0/+9
cc #224
2018-07-100.5: Support space separate in datetime.Eric Huss-0/+11
cc #224
2018-05-07Fix incorrectly reported spans for DatetimeJohn-John Tedro-13/+23
2018-05-07Use BorrowedStrDeserializer instead of generated key deserializersJohn-John Tedro-3/+4
2018-05-07Adjust spans for more complex typesJohn-John Tedro-19/+33
2018-05-07Use custom struct/field naming to deserialize spansJohn-John Tedro-32/+44
2018-05-06Proof of concept: reporting span information to a Spanned<T> typeDavid Tolnay-51/+124
2018-05-01Make Tokenizer emit spansJohn-John Tedro-4/+4
2017-07-06One more case of handling newtype structsAlex Crichton-1/+11
2017-07-06Support deserializing newtypesAlex Crichton-2/+11
Closes #196
2017-05-31Error when parsing numbers outside of f64's rangeAlan Du-0/+6
2017-05-10Update de.rsRaphaël Huchet-1/+1
2017-05-10add example for from_strRaphaël Huchet-0/+31
2017-05-09Document that line/col indices are 0 basedOliver Schneider-0/+2
2017-05-09Allow extracting the location of the errorOliver Schneider-0/+5
2017-04-28Address comment and make test passVincent Prouillet-15/+21
2017-04-25Deserialize enum in ValueVincent Prouillet-1/+3
2017-04-25Remove everything other than enum variant codeVincent Prouillet-97/+0
2017-04-24Allow to deserialize/serialize into enumsVincent Prouillet-1/+134
Close #164
2017-04-20Support serde 1.0.0Alex Crichton-68/+68
2017-04-12Stop taking references when not neededDaniel Lockyer-2/+2
2017-04-12Simplify if-statementsDaniel Lockyer-5/+5
2017-04-12Switch from comparison to is_empty()Daniel Lockyer-3/+3
2017-04-12Remove unneeded return statementsDaniel Lockyer-3/+3
2017-04-05Replace unwrap with expect in public methodsMatthias Endler-3/+3
2017-03-31Fix backcompat with array definitionsAlex Crichton-1/+6
2017-02-08Implement Deserializer::set_require_newline_after_tableAlex Crichton-6/+26
2017-02-08Rewrite crate with serde support from ground upAlex 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