From b4b562c0be7cfc37cace07dca4c28006f2e7b9e1 Mon Sep 17 00:00:00 2001 From: Matthew Hall <matthew@quickbeam.me.uk> Date: Fri, 27 Mar 2015 18:04:30 +0000 Subject: [PATCH] Update to rust nightly --- examples/main.rs | 1 - src/lib.rs | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/main.rs b/examples/main.rs index 4ccb245..4835e55 100644 --- a/examples/main.rs +++ b/examples/main.rs @@ -1,4 +1,3 @@ -extern crate serialize; extern crate tiled; use std::path::Path; diff --git a/src/lib.rs b/src/lib.rs index 50422ae..6090f88 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,8 +1,8 @@ #![allow(unstable)] -#![feature(slicing_syntax)] +#![feature(slicing_syntax, core)] extern crate flate2; extern crate xml; -extern crate "rustc-serialize" as serialize; +extern crate rustc_serialize as serialize; use std::str::FromStr; use std::collections::HashMap; -- GitLab