What's Changed
- Change conversion of NTP64 and Timestamp to/from String (#16).
For bothNTP64
andTimestamp
types the default formatting used byDisplay
trait (and thus byToString
trait) changed. RFC3339 format was used to represent theNTP64
type, which was loosing precision and was not bijective withFromStr
trait (see #15). Now unsigned integer decimal representation is used.
Theto_string_rfc3339_lossy()
andparse_rfc3339()
methods have been added for explicit conversion to RFC3339 format.
Full Changelog: 0.7.0...0.8.0