aboutsummaryrefslogtreecommitdiff
path: root/src/datetime.rs
AgeCommit message (Collapse)AuthorLines
2019-08-14Removed all warnings besides twoNick Hackman-11/+11
Majority of warnings removed via RustFix Two remain one being a long return type and another being a name suggestion from Clippy `to_owned` for MaybeString
2019-05-082018 edition idioms.Eric Huss-11/+11
2019-04-02Fix warnings for deprecated usages of trim_{left,right}_matches.Erich Gubler-1/+1
2019-02-19Fix case sensitivity with T, Z, and E.Eric Huss-2/+3
2018-12-17Run `cargo fmt`Alex Crichton-26/+30
2018-07-100.5: Support space separate in datetime.Eric Huss-1/+2
cc #224
2018-05-07Use custom struct/field naming to deserialize spansJohn-John Tedro-9/+7
2017-06-01Store fractional seconds as a u32 instead of a f64Alan Du-24/+23
Drops precision down to the nanoseconds
2017-06-01Truncate fractional seconds to picosecondsAlan Du-1/+4
Close https://github.com/alexcrichton/toml-rs/issues/186
2017-05-30Store fraction of seconds in times unconditionallyAlan Du-5/+5
This way, times without fractional seconds will be compare equal to times with 0 fractional seconds if all else is equal. For example, 06:00:00 == 06:00:00.0 Closes https://github.com/alexcrichton/toml-rs/issues/179
2017-04-20Support serde 1.0.0Alex Crichton-13/+13
2017-04-12Simplify if-statementsDaniel Lockyer-4/+3
2017-02-08Rewrite crate with serde support from ground upAlex Crichton-0/+424
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