summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2015-03-01 12:29:44 -0500
committerAndrew Gallant <jamslam@gmail.com>2015-03-01 12:29:44 -0500
commit92d4275c210bb8befc080258824d5d6b6804d8e4 (patch)
tree1c0cfd00143e20f9c926409d9fcd5b52630e53ac /src/main.rs
parent4aac4f5176a0382a7d4cbaa91c991ffb2f50c85b (diff)
rustup + cleanup
Basically reducing the number of unstable features being used.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 4260414..bbcd4e9 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2,9 +2,8 @@
These are some docs.
*/
-#![allow(dead_code, unused_variables)]
-
-#![feature(collections, core, env, old_io, os, old_path, std_misc, unicode)]
+#![feature(collections, core, exit_status,
+ old_io, os, old_path, std_misc, unicode)]
extern crate csv;
extern crate docopt;