diff options
Diffstat (limited to 'components/url/lib.rs')
-rw-r--r-- | components/url/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/url/lib.rs b/components/url/lib.rs index 069fc767691..7ec15b05d7b 100644 --- a/components/url/lib.rs +++ b/components/url/lib.rs @@ -12,10 +12,6 @@ extern crate malloc_size_of; extern crate malloc_size_of_derive; #[macro_use] extern crate serde; -extern crate servo_rand; -extern crate url; -extern crate url_serde; -extern crate uuid; pub mod origin; @@ -27,6 +23,7 @@ use std::ops::{Index, Range, RangeFrom, RangeFull, RangeTo}; use std::path::Path; use std::sync::Arc; use url::{Position, Url}; +use url_serde; pub use url::Host; |