diff options
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 0d59b21124d..0c186fdb690 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#![feature(macro_rules,unsafe_destructor)] +#![feature(default_type_params,macro_rules,unsafe_destructor)] #![deny(unused_imports, unused_variable)] @@ -29,8 +29,10 @@ extern crate std_time = "time"; extern crate string_cache; pub mod atom; +pub mod bloom; pub mod cache; pub mod debug_utils; +pub mod fnv; pub mod geometry; pub mod logical_geometry; pub mod memory; |