diff options
Diffstat (limited to 'components/util')
-rw-r--r-- | components/util/Cargo.toml | 3 | ||||
-rw-r--r-- | components/util/lib.rs | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/components/util/Cargo.toml b/components/util/Cargo.toml index 1fc0ac21f61..706ca02e9b6 100644 --- a/components/util/Cargo.toml +++ b/components/util/Cargo.toml @@ -24,6 +24,9 @@ git = "https://github.com/servo/rust-cssparser" [dependencies.selectors] git = "https://github.com/servo/rust-selectors" +[dependencies.azure] +git = "https://github.com/servo/rust-azure" + [dependencies.geom] git = "https://github.com/servo/rust-geom" diff --git a/components/util/lib.rs b/components/util/lib.rs index 62068621467..c9b1c5bb76a 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -24,6 +24,7 @@ #[macro_use] extern crate log; +extern crate azure; extern crate alloc; #[macro_use] extern crate bitflags; extern crate cssparser; |