diff options
| author | Robin Stocker | 2017-08-22 05:29:28 +1000 | 
|---|---|---|
| committer | Ed Barnard | 2017-08-21 20:29:28 +0100 | 
| commit | 33f92308e8fe3f88a80b11eb7b2dee1d27977443 (patch) | |
| tree | 84251c18df98cefad6a2bb7c4b4d8aa10cbef78a /src/plist.rs | |
| parent | b0d6118889409aa6fb13a7855d5ede17c3d11cc1 (diff) | |
| download | rust-plist-33f92308e8fe3f88a80b11eb7b2dee1d27977443.tar.bz2 | |
Upgrade chrono from 0.3 to 0.4 (#23)
Diffstat (limited to 'src/plist.rs')
| -rw-r--r-- | src/plist.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plist.rs b/src/plist.rs index 7930754..27df833 100644 --- a/src/plist.rs +++ b/src/plist.rs @@ -339,7 +339,7 @@ mod tests {      #[test]      fn test_plist_access() {          use std::collections::BTreeMap; -        use chrono::*; +        use chrono::prelude::*;          use super::Date;          let vec = vec![Plist::Real(0.0)]; @@ -360,7 +360,7 @@ mod tests {          assert_eq!(Plist::Data(slice.to_vec()).into_data(),                     Some(slice.to_vec())); -        let date: Date = UTC::now().into(); +        let date: Date = Utc::now().into();          assert_eq!(Plist::Date(date.clone()).as_date(), Some(&date));          assert_eq!(Plist::Real(0.0).as_real(), Some(0.0));  | 
