From 9e7c80bcd0c16b65715c72cf16fcc334c20f0418 Mon Sep 17 00:00:00 2001 From: Ben S Date: Mon, 2 Mar 2015 01:59:43 +0000 Subject: [PATCH] Upgrade to latest Rust - env is no longer feature gated - exit_status is! --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.