From 2f433f2061d3d5708749505bf9772ad5cb2f13e4 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 9 Oct 2014 10:16:15 -0700 Subject: [PATCH] Enable the slicing syntax feature --- phf_mac/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phf_mac/src/lib.rs b/phf_mac/src/lib.rs index 557667e6..7bcc4c11 100644 --- a/phf_mac/src/lib.rs +++ b/phf_mac/src/lib.rs @@ -3,6 +3,8 @@ //! See the documentation for the `phf` crate for more details. #![doc(html_root_url="http://sfackler.github.io/rust-phf/doc")] #![feature(plugin_registrar, quote, default_type_params, macro_rules)] +#![feature(slicing_syntax)] +#![allow(unknown_features)] extern crate rand; extern crate syntax;