Remove servo_url dependency for geckolib

It seems mod attr is not used for geckolib at all, and that is the
only place where servo_url is still referenced for geckolib, so we
can just remove it.
This commit is contained in:
Xidorn Quan 2017-04-07 16:44:38 +10:00
parent 1b6c3e06bb
commit 3150a92651
3 changed files with 5 additions and 7 deletions

View file

@ -71,7 +71,7 @@ extern crate selectors;
#[cfg(feature = "servo")] #[macro_use] extern crate serde_derive;
#[cfg(feature = "servo")] #[macro_use] extern crate servo_atoms;
extern crate servo_config;
extern crate servo_url;
#[cfg(feature = "servo")] extern crate servo_url;
extern crate smallvec;
#[macro_use]
extern crate style_traits;
@ -81,7 +81,7 @@ extern crate unicode_segmentation;
pub mod animation;
#[allow(missing_docs)] // TODO.
pub mod attr;
#[cfg(feature = "servo")] pub mod attr;
pub mod bezier;
pub mod bloom;
pub mod cache;