Remove the need for the unicode feature flag

This commit is contained in:
Erick Tryzelaar
2015-04-12 10:42:57 -07:00
parent 5f6838130d
commit 8ba1e7aceb
5 changed files with 34 additions and 34 deletions
+1 -2
View File
@@ -6,9 +6,8 @@
//! leaving serde to perform roughly the same speed as a hand written serializer for a specific
//! type.
#![feature(collections, core, std_misc, unicode)]
#![feature(collections, core, std_misc)]
extern crate unicode;
pub use ser::{Serialize, Serializer};
pub use de::{Deserialize, Deserializer, Error};