From 71de5501c450eeaa363aa5403a5258d231d64935 Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Fri, 14 Oct 2016 16:38:15 -0700 Subject: Rustup and update dependencies Now uses serde_dervive \o/ --- src/main.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index acf47302..afc60a66 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,9 +19,13 @@ #![feature(drop_types_in_const)] #![feature(unicode)] #![feature(step_trait)] -#![feature(custom_derive, plugin)] -#![plugin(serde_macros)] #![feature(core_intrinsics)] +#![allow(stable_features)] // lying about question_mark because 1.14.0 isn't released! + +#![feature(proc_macro)] + +#[macro_use] +extern crate serde_derive; extern crate cgmath; extern crate copypasta; -- cgit v1.2.3-54-g00ecf