diff options
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 4eaf40b465f..28efc0e58e1 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -8,9 +8,7 @@ #![feature(core)] #![feature(exit_status)] #![feature(hash)] -#![feature(int_uint)] #![feature(io)] -#![feature(old_io)] #![feature(optin_builtin_traits)] #![feature(path)] #![cfg_attr(not(target_os = "android"), feature(path_ext))] @@ -43,6 +41,7 @@ pub use selectors::smallvec; use std::sync::Arc; +pub mod bezier; pub mod cache; pub mod cursor; pub mod debug_utils; |