Move util::range into its own crate

This commit is contained in:
Jonathan Schuster 2016-02-21 13:08:20 -05:00
parent 455ed0ae6d
commit 205336bf2e
21 changed files with 96 additions and 26 deletions

View file

@ -59,6 +59,8 @@ extern crate net_traits;
#[macro_use]
extern crate profile_traits;
extern crate rand;
#[macro_use]
extern crate range;
extern crate rustc_serialize;
extern crate serde;
@ -73,7 +75,6 @@ extern crate style_traits;
extern crate time;
extern crate unicode_script;
extern crate url;
#[macro_use]
extern crate util;
extern crate webrender_traits;