Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2019-03-11 | Add PartialEq to Toml::de | Abid Omar | -3/+3 | |
Add PartialEq trait to Error, ErrorInner and ErrorKind. Relevant issue: https://github.com/alexcrichton/toml-rs/issues/291 | ||||
2019-02-19 | Fix case sensitivity with T, Z, and E. | Eric Huss | -1/+4 | |
2019-01-07 | Fix disallowing duplicate table headers | Alex Crichton | -6/+30 | |
This commit fixes #279 where a case of duplicate table headers slipped through the cracks. This also adds an option to disable this new validation to allow Cargo to preserve backwards compatibility. | ||||
2018-12-17 | Run `cargo fmt` | Alex Crichton | -232/+335 | |
2018-11-28 | Merge pull request #264 from azriel91/feature/225/externally-tagged-enums | Alex Crichton | -57/+391 | |
Issue 255: Externally tagged enum deserialization | ||||
2018-11-21 | Fix trailing space after date. | Eric Huss | -7/+6 | |
The space between date and time was being eagerly skipped when it shouldn't. | ||||
2018-11-17 | Maintain backward compatibility with Rust 1.15, take 3. | Azriel Hoh | -1/+2 | |
2018-11-17 | Only validate table keys against fields when deserializing enum. | Azriel Hoh | -18/+27 | |
Issue #225 | ||||
2018-11-17 | Maintain compatibility with Rust 1.15 | Azriel Hoh | -2/+2 | |
Issue #225 | ||||
2018-11-12 | Error when deserializing struct if encountering unknown fields. | Azriel Hoh | -0/+41 | |
Issue #225 | ||||
2018-11-10 | Maintain compatibility with Rust 1.15 | Azriel Hoh | -1/+1 | |
Issue #225 | ||||
2018-11-10 | Implemented deserialization for external enums. | Azriel Hoh | -71/+175 | |
Issue #225 | ||||
2018-11-10 | Better error handling when parsing tuples. | Azriel Hoh | -12/+35 | |
Issue #225 | ||||
2018-11-10 | Implemented enum tuple deserialization. | Azriel Hoh | -6/+63 | |
Issue #225 | ||||
2018-11-10 | Implement deserialization for unit and struct variants. | Azriel Hoh | -1/+100 | |
Issue #225 | ||||
2018-09-25 | Fix multi-line strings are not allowed for key | rhysd | -0/+8 | |
In spec https://github.com/toml-lang/toml#keys Quoted keys are clarified as > he exact same rules as either basic strings or literal strings TOML clearly distinguishes basic string and multi-line basic string (literal string is also). https://github.com/toml-lang/toml#string So table key and quoted key should not allow multi-line basic string and multi-line literal string. ABNF definition also describes that. https://github.com/toml-lang/toml/blob/master/toml.abnf ``` string = ml-basic-string / basic-string / ml-literal-string / literal-string quoted-key = basic-string / literal-string ``` `string` contains `ml-*` but `quoted-key` doesn't. | ||||
2018-07-27 | Don't allow intermixing inline tables and dotted key tables. | Eric Huss | -4/+6 | |
2018-07-16 | Support older rustc. | Eric Huss | -4/+4 | |
2018-07-16 | 0.5: Support dotted keys. | Eric Huss | -5/+57 | |
cc #224 | ||||
2018-07-11 | 0.5: Support hex/oct/bin integers. | Eric Huss | -30/+39 | |
cc #224 | ||||
2018-07-11 | Merge pull request #251 from ehuss/datetime-space | Alex Crichton | -0/+11 | |
0.5: Support space separator in datetime. | ||||
2018-07-11 | 0.5: Support floats nan, inf, and +/-0.0. | Eric Huss | -0/+9 | |
cc #224 | ||||
2018-07-10 | 0.5: Support space separate in datetime. | Eric Huss | -0/+11 | |
cc #224 | ||||
2018-05-07 | Fix incorrectly reported spans for Datetime | John-John Tedro | -13/+23 | |
2018-05-07 | Use BorrowedStrDeserializer instead of generated key deserializers | John-John Tedro | -3/+4 | |
2018-05-07 | Adjust spans for more complex types | John-John Tedro | -19/+33 | |
2018-05-07 | Use custom struct/field naming to deserialize spans | John-John Tedro | -32/+44 | |
2018-05-06 | Proof of concept: reporting span information to a Spanned<T> type | David Tolnay | -51/+124 | |
2018-05-01 | Make Tokenizer emit spans | John-John Tedro | -4/+4 | |
2017-07-06 | One more case of handling newtype structs | Alex Crichton | -1/+11 | |
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 |