summaryrefslogtreecommitdiffstats
path: root/src/parser/iterator.rs
AgeCommit message (Collapse)Author
2024-02-09Bump edition to 2021 and introduce rustfmtPro
2024-02-09Update nom and iso8601 dependenciesPro
2024-02-09CleanupPro
2020-03-05Remove unused importMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-03-05Replace try!() with ? operatorMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-03-05Replace failure with thiserrorMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2018-11-07Move code to failure as error handling libraryMatthias Beyer
2017-11-24Add out of bounds check and error propagation for NaiveDate::from_ymd() callsMatthias Beyer
* Added recursion limit for error_chain * Added new error for out-of-bounds error * Added IntoTimeType helper trait
2017-11-19Remove warningsMatthias Beyer
* Remove unused imports * Remove unused variables * Remove unused functions
2017-11-19Split parser into modulesMatthias Beyer
The TimeType::parse() function was removed because we don't want that there. It is not that nice, because the interface would return either a TimeType or an Iterator.