diff options
author | Shanavas M <shanavas.m2@gmail.com> | 2019-01-09 16:12:15 +0530 |
---|---|---|
committer | Shanavas M <shanavas.m2@gmail.com> | 2019-01-10 12:57:09 +0530 |
commit | b763d6737cf25b94dd94a37ed360cdd61d275a8f (patch) | |
tree | a68bb0d2082395011da8dd240a9c7fe92f7407d2 /components/style/lib.rs | |
parent | 44cbe969e24e65fc8f82f77bac6374ceb4aa0e71 (diff) | |
download | servo-b763d6737cf25b94dd94a37ed360cdd61d275a8f.tar.gz servo-b763d6737cf25b94dd94a37ed360cdd61d275a8f.zip |
Remove OrderedMap in favor of IndexMap
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r-- | components/style/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs index d4a296bada5..5bcc7a574b9 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -52,6 +52,7 @@ extern crate hashglobe; #[cfg(feature = "servo")] #[macro_use] extern crate html5ever; +extern crate indexmap; extern crate itertools; extern crate itoa; #[macro_use] |