summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Unterwaditzer <markus@unterwaditzer.net>2015-01-10 13:44:26 +0100
committerMarkus Unterwaditzer <markus@unterwaditzer.net>2015-01-10 13:44:26 +0100
commit4a292f8b4ed9fafcbe00233812b31f353fa773af (patch)
treead4d85c7813e29778727fd9faf692b92542144b3
parent133bc1de6120e16b344c6e1782d390acae0bc008 (diff)
Rust alpha fixes
-rw-r--r--src/vobject/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/vobject/lib.rs b/src/vobject/lib.rs
index 10076e5..2d26786 100644
--- a/src/vobject/lib.rs
+++ b/src/vobject/lib.rs
@@ -1,8 +1,7 @@
// DOCS
-#![feature(phase)]
-#[phase(plugin)]
-extern crate peg_syntax_ext;
+#![feature(plugin)]
+#[plugin] extern crate peg_syntax_ext;
use std::collections::HashMap;
use std::collections::hash_map::Entry::{Occupied, Vacant};