1
0
mirror of https://github.com/bspeice/dtparse synced 2025-07-03 14:54:57 -04:00

Redo the tokenization

Still has issues with one test case for fuzzy
This commit is contained in:
Bradlee Speice
2018-07-07 23:37:02 -04:00
committed by Bradlee Speice
parent 9135962839
commit e049618fff
9 changed files with 1029 additions and 155 deletions

View File

@ -99,6 +99,8 @@ pub fn day_of_week(year: u32, month: u32, day: u32) -> ParseResult<DayOfWeek> {
}
}
// Rust warns about unused imports here, but they're definitely used.
#[allow(unused_imports)]
mod test {
use weekday::day_of_week;