diff --git a/Cargo.toml b/Cargo.toml index 913c1fa..62ff8fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] description = "Read GTFS (public transit timetables) files" name = "gtfs-structures" -version = "0.41.2" +version = "0.41.3" authors = ["Tristram Gräbener ", "Antoine Desbordes "] repository = "https://github.com/rust-transit/gtfs-structure" license = "MIT" diff --git a/src/objects.rs b/src/objects.rs index 313113e..1fcc36f 100644 --- a/src/objects.rs +++ b/src/objects.rs @@ -3,8 +3,8 @@ use crate::serde_helpers::*; use chrono::{Datelike, NaiveDate, Weekday}; use rgb::RGB8; -use std::hash::{Hash, Hasher}; use std::fmt; +use std::hash::{Hash, Hasher}; use std::sync::Arc; /// Objects that have an identifier implement this trait