summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2016-03-31 21:19:29 +0100
committerBen S <ogham@bsago.me>2016-03-31 21:19:29 +0100
commitee4c09dd30075117473baa4ad2cf108e512fe05c (patch)
tree389179f978a5fb4f842fc0e6fbe74777929fd1bd /src/main.rs
parent1dd9e6153bd8076209123e0210040f1120fad6b5 (diff)
Use only the time zone data present on the system
Thinking about it, it doesn't make sense to use an *external* time zone source when the program we want to compare it to, ls, uses the system one. So just use the system one. Also, handle the case where the time zone data file can't be loaded by showing the files in UTC rather than falling over and quitting.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index d09a034..dc9f724 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -15,7 +15,6 @@ extern crate term_grid;
extern crate unicode_width;
extern crate users;
extern crate zoneinfo_compiled;
-extern crate zoneinfo_data;
#[cfg(feature="git")] extern crate git2;
#[macro_use] extern crate lazy_static;