diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2016-05-17 11:24:17 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2016-05-17 17:05:18 -0700 |
commit | aa8e214e34d56f5ecb6c06ad367b611086bcdfb5 (patch) | |
tree | 51e4978b54b0bcdee6be7cb0765cf0554c8979af /components/util/lib.rs | |
parent | 6c08ad857ea4139bb266c481eebe4315bdd460d5 (diff) | |
download | servo-aa8e214e34d56f5ecb6c06ad367b611086bcdfb5.tar.gz servo-aa8e214e34d56f5ecb6c06ad367b611086bcdfb5.zip |
Use num_traits in util
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 2 |
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; |