toml-rs/tests/invalid
Alex Crichton e256931e9b Rewrite crate with serde support from ground up
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
2017-02-08 21:21:18 -08:00
..
array-mixed-types-arrays-and-ints.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
array-mixed-types-ints-and-floats.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
array-mixed-types-strings-and-ints.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
datetime-malformed-no-leads.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
datetime-malformed-no-secs.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
datetime-malformed-no-t.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
datetime-malformed-with-milli.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
duplicate-key-table.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
duplicate-keys.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
duplicate-tables.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
empty-implicit-table.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
empty-table.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
float-no-leading-zero.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
float-no-trailing-digits.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
key-after-array.toml Add failing test cases containing invalid Toml with keys on the same line as table definition 2016-04-17 22:51:28 +01:00
key-after-table.toml Add failing test cases containing invalid Toml with keys on the same line as table definition 2016-04-17 22:51:28 +01:00
key-empty.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
key-hash.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
key-newline.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
key-open-bracket.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
key-single-open-bracket.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
key-space.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
key-start-bracket.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
key-two-equals.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
string-bad-byte-escape.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
string-bad-escape.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
string-byte-escapes.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
string-no-close.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
table-array-implicit.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
table-array-malformed-bracket.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
table-array-malformed-empty.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
table-empty.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
table-nested-brackets-close.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
table-nested-brackets-open.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
table-whitespace.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
table-with-pound.toml Update integration tests to BurntSushi/toml-test@2f1c20de60 2016-04-02 17:15:59 +09:00
text-after-array-entries.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
text-after-integer.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
text-after-string.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
text-after-table.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
text-before-array-separator.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00
text-in-array.toml Move tests to integration tests 2015-01-15 12:44:05 -08:00