rust-transit / gtfs-structure

Read a GTFS file
MIT License
61 stars 32 forks source link

Use instant instead of counting UTC time #170

Closed kylerchin closed 2 weeks ago

kylerchin commented 2 weeks ago

the system clock is subject to time warping, and such when timing small times like reading a file inside a single computer, Instant is preferred. Instant is more precise and is generally recommended in Rust libraries.