diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-03-26 14:15:31 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-03-26 14:15:31 +0200 |
commit | 0ed4df28b57e51795bf54240ce5fcf849d8a0863 (patch) | |
tree | 518d0da8b8688e13dc8e2e5d7a9a455fc72cf639 /components/script/lib.rs | |
parent | c2d9f663afd6c804c30a7a077392b836e1fa29b5 (diff) | |
download | servo-0ed4df28b57e51795bf54240ce5fcf849d8a0863.tar.gz servo-0ed4df28b57e51795bf54240ce5fcf849d8a0863.zip |
Replace use of rustc_serialize::base64 by base64
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 aa2e2f4baf5..ade3543bbe8 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -28,6 +28,7 @@ extern crate angle; extern crate app_units; extern crate atomic_refcell; extern crate audio_video_metadata; +extern crate base64; #[macro_use] extern crate bitflags; extern crate bluetooth_traits; @@ -78,7 +79,6 @@ extern crate range; extern crate ref_filter_map; extern crate ref_slice; extern crate regex; -extern crate rustc_serialize; extern crate script_layout_interface; extern crate script_traits; extern crate selectors; |