summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2015-05-16 22:36:43 -0400
committerAndrew Gallant <jamslam@gmail.com>2015-05-16 22:36:43 -0400
commit6da87c525a514b719821e28384c11dfdd9f7d2f3 (patch)
tree2df8c8785a48e81d493361c5ad879217ddac53d6 /src/main.rs
parentebcbbec643f5714af9425f5db64f6291f5e8b2c9 (diff)
More rustupping.
Essentially, use the new `filetime` crate to do stuff with last modified/accessed file times.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 8e0cb55..85283d7 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2,11 +2,12 @@
These are some docs.
*/
-#![feature(fs_time, step_by)]
+#![feature(step_by)]
extern crate byteorder;
extern crate csv;
extern crate docopt;
+extern crate filetime;
extern crate libc;
extern crate rand;
extern crate regex;