aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/blob.rs
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-04-20 15:23:43 +0200
committerMs2ger <Ms2ger@gmail.com>2016-04-20 15:23:43 +0200
commit03d4bacc0554a9772fec0382486b2f50d8c678f5 (patch)
tree8c0484f10828bf822ff35fdf43cdbe194f43520c /components/script/dom/blob.rs
parent0f2b83ca0f54f91d53e3d1c8df0f4bab2d400bb1 (diff)
downloadservo-03d4bacc0554a9772fec0382486b2f50d8c678f5.tar.gz
servo-03d4bacc0554a9772fec0382486b2f50d8c678f5.zip
Use num-traits in script.
Diffstat (limited to 'components/script/dom/blob.rs')
-rw-r--r--components/script/dom/blob.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/blob.rs b/components/script/dom/blob.rs
index 9c23b8f6da0..de7a7b8c35a 100644
--- a/components/script/dom/blob.rs
+++ b/components/script/dom/blob.rs
@@ -12,7 +12,7 @@ use dom::bindings::reflector::{Reflectable, Reflector, reflect_dom_object};
use dom::bindings::trace::JSTraceable;
use encoding::all::UTF_8;
use encoding::types::{EncoderTrap, Encoding};
-use num::ToPrimitive;
+use num_traits::ToPrimitive;
use std::ascii::AsciiExt;
use std::borrow::ToOwned;
use std::cell::Cell;