diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-02-10 11:34:06 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-02-10 14:19:13 +0100 |
commit | aa8e01af2a275568b78a12ea7ede26d8a6d7c3a0 (patch) | |
tree | 0fd04effb298d4bf8adac4727dd2d1cc522040df /components/script/lib.rs | |
parent | e3a4d493117ffd09ce75270b36012845ebb9c08c (diff) | |
download | servo-aa8e01af2a275568b78a12ea7ede26d8a6d7c3a0.tar.gz servo-aa8e01af2a275568b78a12ea7ede26d8a6d7c3a0.zip |
Use base64 from rustc-serialize (fixes #4747).
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 b22d47ab64a..e3cc44e9f49 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -26,7 +26,7 @@ extern crate js; extern crate libc; extern crate msg; extern crate net; -extern crate serialize; +extern crate "rustc-serialize" as rustc_serialize; extern crate time; extern crate canvas; extern crate script_traits; |