From 0cda89fa2ddd22dbbf215e9a598455038aea4c60 Mon Sep 17 00:00:00 2001 From: Nikita Pekin Date: Tue, 3 Feb 2015 15:20:23 -0500 Subject: [PATCH] Update for latest Rust --- src/lib.rs | 2 +- tcod-sys/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 09eb461e4..42f4e4e46 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![feature(libc, std_misc, path, core, hash, io, collections)] +#![feature(libc, std_misc, path, core, hash, io)] extern crate libc; extern crate "tcod-sys" as ffi; diff --git a/tcod-sys/lib.rs b/tcod-sys/lib.rs index 710a00353..c963ac58d 100644 --- a/tcod-sys/lib.rs +++ b/tcod-sys/lib.rs @@ -1,6 +1,6 @@ #![allow(non_camel_case_types, non_snake_case, non_upper_case_globals, missing_copy_implementations, raw_pointer_derive)] -#![feature(libc, core)] +#![feature(libc)] // This is not added by rust-bindgen even though it's used heavily in the // generated code: extern crate libc;