summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-03-02 01:59:43 +0000
committerBen S <ogham@bsago.me>2015-03-02 01:59:43 +0000
commit9e7c80bcd0c16b65715c72cf16fcc334c20f0418 (patch)
treeb104565c4152974c00221b4fefc4d799f362f3da
parent6b3d812af5dd0fb7faffd3d9e7c39cad4ae3561c (diff)
Upgrade to latest Rust
- env is no longer feature gated - exit_status is!
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 97e1959..b9b037d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,4 +1,4 @@
-#![feature(collections, core, env, io, libc, old_io, old_path, os, std_misc)]
+#![feature(collections, core, exit_status, io, libc, old_io, old_path, os, std_misc)]
// Other platforms than macos don't need std_misc but you can't
// use #[cfg] on features.