diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-04-20 15:23:43 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-04-20 15:23:43 +0200 |
commit | 03d4bacc0554a9772fec0382486b2f50d8c678f5 (patch) | |
tree | 8c0484f10828bf822ff35fdf43cdbe194f43520c /components/script/lib.rs | |
parent | 0f2b83ca0f54f91d53e3d1c8df0f4bab2d400bb1 (diff) | |
download | servo-03d4bacc0554a9772fec0382486b2f50d8c678f5.tar.gz servo-03d4bacc0554a9772fec0382486b2f50d8c678f5.zip |
Use num-traits in script.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index e525a62b70d..2827238dcef 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -53,7 +53,7 @@ extern crate libc; extern crate log; extern crate msg; extern crate net_traits; -extern crate num; +extern crate num_traits; extern crate offscreen_gl_context; extern crate phf; #[macro_use] |