aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/lib.rs
diff options
context:
space:
mode:
authorMatt Brubeck <mbrubeck@limpet.net>2016-05-17 11:24:17 -0700
committerMatt Brubeck <mbrubeck@limpet.net>2016-05-17 17:05:18 -0700
commitaa8e214e34d56f5ecb6c06ad367b611086bcdfb5 (patch)
tree51e4978b54b0bcdee6be7cb0765cf0554c8979af /components/util/lib.rs
parent6c08ad857ea4139bb266c481eebe4315bdd460d5 (diff)
downloadservo-aa8e214e34d56f5ecb6c06ad367b611086bcdfb5.tar.gz
servo-aa8e214e34d56f5ecb6c06ad367b611086bcdfb5.zip
Use num_traits in util
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r--components/util/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs
index c98d3eebf3b..b9c349fee6a 100644
--- a/components/util/lib.rs
+++ b/components/util/lib.rs
@@ -34,8 +34,8 @@ extern crate lazy_static;
extern crate libc;
#[macro_use]
extern crate log;
-extern crate num;
extern crate num_cpus;
+extern crate num_traits;
extern crate rand;
extern crate rustc_serialize;
extern crate serde;