aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
AgeCommit message (Collapse)AuthorLines
2019-08-28Switch to github actions for CIAlex Crichton-24/+0
2019-01-08Merge pull request #278 from Kerollmops/masterAlex Crichton-0/+1
Add the preserve_order feature (rebased version)
2019-01-02Tweak travis configAlex Crichton-22/+15
2018-12-28test-suite is not tested with preserve_orderVincent Prouillet-1/+0
2018-12-28Add the preserve_order featureVincent Prouillet-0/+2
2017-11-12Move tests into their own crateDavid Tolnay-0/+1
2017-07-30don't run `cargo doc` for 1.15.0Garrett Berg-1/+1
2017-04-05travis - run tests on 1.15.0Colin Kiegel-0/+1
2017-02-08Rewrite crate with serde support from ground upAlex Crichton-5/+1
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-11-19Update travis tokenAlex Crichton-1/+2
2016-01-25Move travis from 1.0.0 -> stableAlex Crichton-4/+1
2015-12-15Update travis syntaxAlex Crichton-1/+3
2015-11-29Don't run serde tests on 1.0.0Alex Crichton-1/+1
2015-09-25Add stable Rust build to Travis-CI configKerhong-0/+1
2015-08-13Make serde-tests a standalone crateAlex Crichton-0/+1
2015-08-12Merge remote-tracking branch 'remotes/origin/master' into serdeErick Tryzelaar-9/+16
2015-07-10Upload docs only on nightlyAlex Crichton-1/+1
2015-07-10Use travis-cargo for coverage + doc uploadAlex Crichton-10/+12
2015-05-15Test on beta as wellAlex Crichton-0/+1
2015-05-15Try out a new travis configAlex Crichton-0/+4
2015-04-21Continue to tweak travis for serdeAlex Crichton-3/+1
2015-04-21Tweak some styleAlex Crichton-0/+2
2015-04-02Modularize rustc-serialize supportAlex Crichton-0/+2
* Add rustc-serialize as a default feature * Make room for for serde support
2015-03-03Don't upload extra docs on travisAlex Crichton-1/+1
2015-01-11Tweak travis configAlex Crichton-6/+4
2014-10-29Don't email on successful travis buildsAlex Crichton-0/+3
2014-10-05Update travis configAlex Crichton-2/+2
2014-09-22Upload docs to Rust CI as wellAlex Crichton-8/+16
2014-09-16Tweak travis configAlex Crichton-3/+1
2014-08-07Cargo now runs doc testsAlex Crichton-1/+0
2014-08-03Put documentation on githubAlex Crichton-6/+12
2014-07-14Update travis configAlex Crichton-2/+0
2014-07-10Update travis configAlex Crichton-4/+7
2014-06-20Add a travis ymlAlex Crichton-0/+8