aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2021-03-21hilarious and original jokeHEADmainMelody Horn-9/+8
2020-12-18Bump to 0.5.8Eric Huss-1/+1
2020-10-11Bump to 0.5.7Alex Crichton-1/+1
2020-01-16Bump to 0.5.6Alex Crichton-1/+1
2019-11-01Bump to 0.5.5Alex Crichton-1/+1
2019-10-29update (#352)Tshepang Lekhonkhobe-1/+1
2019-10-28Bump to 0.5.4Alex Crichton-1/+1
2019-10-25Switch from linked-hash-map to indexmapAlex Crichton-2/+2
Follow the footsteps of serde_json! Closes #348
2019-10-16Remove outdated Travis CI badge (#346)Linda_pp-3/+0
2019-08-13Bump to 0.5.3Eric Huss-1/+1
2019-08-13Bump to 0.5.2Alex Crichton-1/+1
2019-07-27Bump Serde dependency to 1.0.97Aaron Hill-1/+1
toml-rs depends on some Serde types not present in Serde 1.0.0 (e.g BorrowedStrDeserializer). By explicitly depending on a newever version, we ensure compatibility with any crates using '-Z minimal-versions' Note that we could probably depend on an older version of Serde, but I didn't see much point in finding the exact minimum patch release that's compatible with toml-rs
2019-05-16Bump to 0.5.1Alex Crichton-1/+1
2019-05-08Migrate to 2018 edition.Eric Huss-0/+1
2019-01-08Merge pull request #278 from Kerollmops/masterAlex Crichton-1/+10
Add the preserve_order feature (rebased version)
2019-01-07Fix disallowing duplicate table headersAlex Crichton-0/+3
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-28Add the preserve_order featureVincent Prouillet-1/+10
2018-12-06Bump to 0.4.10Alex Crichton-1/+1
2018-11-21Bump to 0.4.9Alex Crichton-1/+1
2018-10-01Bump to 0.4.8Alex Crichton-1/+1
2018-09-25Bump to 0.4.7Alex Crichton-1/+1
2018-05-24Bump to 0.4.6Alex Crichton-1/+1
2017-08-13Bump to 0.4.5Alex Crichton-1/+1
2017-07-28Bump to 0.4.4Alex Crichton-1/+1
2017-07-27Bump to 0.4.3Alex Crichton-1/+1
2017-06-22Bump to 0.4.2Alex Crichton-1/+1
2017-05-11Bump to 0.4.1Alex Crichton-1/+1
2017-04-20Bump to 0.4.0Alex Crichton-1/+1
2017-04-20Support serde 1.0.0Alex Crichton-3/+3
2017-03-31Bump to 0.3.2Alex Crichton-1/+1
2017-02-27Bump to 0.3.1Alex Crichton-1/+1
2017-02-10Bump to 0.3.0Alex Crichton-1/+1
2017-02-08Update metadataAlex Crichton-2/+6
2017-02-08Rewrite crate with serde support from ground upAlex Crichton-7/+3
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
2016-09-08Bump to 0.2.1Alex Crichton-1/+1
2016-08-01Bump to 0.2.0Alex Crichton-1/+1
2016-07-28Update to serde 0.8.0David Tolnay-1/+1
2016-05-16Bump to 0.1.30Alex Crichton-1/+1
2016-05-12Bump to 0.1.29Alex Crichton-1/+1
2016-03-11Bump to 0.1.28Alex Crichton-1/+1
2016-03-07WIPAlex Crichton-1/+1
2016-02-01Bump to 0.1.27Alex Crichton-1/+1
2016-01-25Bump to 0.1.26Alex Crichton-1/+1
2015-12-18Bump to 0.1.25Alex Crichton-1/+1
2015-12-10Bump to 0.1.24Alex Crichton-1/+1
2015-11-29Update dependenciesAlex Crichton-1/+1
2015-10-07Bump to 0.1.23Alex Crichton-1/+1
2015-08-13Bump to 0.1.22Alex Crichton-1/+1
2015-08-13Make serde-tests a standalone crateAlex Crichton-2/+1
2015-08-12Merge remote-tracking branch 'remotes/origin/master' into serdeErick Tryzelaar-1/+1