stylo: Add hash module for reexporting HashMap

This commit is contained in:
Manish Goregaokar 2017-08-30 17:00:15 -07:00 committed by Manish Goregaokar
parent c682943900
commit fae5e10643
No known key found for this signature in database
GPG key ID: 3BBF4D3E2EF79F98
2 changed files with 34 additions and 0 deletions

View file

@ -49,6 +49,7 @@ extern crate bitflags;
extern crate euclid;
extern crate fnv;
#[cfg(feature = "gecko")] #[macro_use] pub mod gecko_string_cache;
extern crate hashglobe;
#[cfg(feature = "servo")] extern crate heapsize;
#[cfg(feature = "servo")] #[macro_use] extern crate heapsize_derive;
extern crate itertools;
@ -112,6 +113,7 @@ pub mod font_face;
pub mod font_metrics;
#[cfg(feature = "gecko")] #[allow(unsafe_code)] pub mod gecko;
#[cfg(feature = "gecko")] #[allow(unsafe_code)] pub mod gecko_bindings;
pub mod hash;
pub mod invalidation;
#[allow(missing_docs)] // TODO.
pub mod logical_geometry;