aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/lib.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-03-05 11:09:58 -0700
committerbors-servo <metajack+bors@gmail.com>2015-03-05 11:09:58 -0700
commit7fc37dfaa76c9265e6d2145fe5ef2fba5f6bd013 (patch)
tree48e10efbc7e3389b88d53666bd2e1b92ec198da0 /components/layout/lib.rs
parentcaf5663e0981f36a621dde1dd51be2bd0a15dd24 (diff)
parent559ff68b31eabdf1025fba2fcc386b504256a0b2 (diff)
downloadservo-7fc37dfaa76c9265e6d2145fe5ef2fba5f6bd013.tar.gz
servo-7fc37dfaa76c9265e6d2145fe5ef2fba5f6bd013.zip
auto merge of #5135 : iamdanfox/servo/fix-5120-rename-layout-util, r=jdm
A simple rename/refactor (https://github.com/servo/servo/issues/5120) My first servo contribution!
Diffstat (limited to 'components/layout/lib.rs')
-rw-r--r--components/layout/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/layout/lib.rs b/components/layout/lib.rs
index 837945eff81..6eb177f6f94 100644
--- a/components/layout/lib.rs
+++ b/components/layout/lib.rs
@@ -43,7 +43,7 @@ extern crate net;
extern crate msg;
extern crate selectors;
#[macro_use]
-extern crate "util" as servo_util;
+extern crate util;
#[no_link] #[macro_use] #[plugin]
extern crate string_cache_macros;
@@ -60,6 +60,7 @@ pub mod layout_debug;
pub mod block;
pub mod construct;
pub mod context;
+pub mod data;
pub mod display_list_builder;
pub mod floats;
pub mod flow;
@@ -70,6 +71,7 @@ pub mod layout_task;
pub mod inline;
pub mod list_item;
pub mod model;
+pub mod opaque_node;
pub mod parallel;
pub mod sequential;
pub mod table_wrapper;
@@ -81,7 +83,6 @@ pub mod table_row;
pub mod table_cell;
pub mod text;
pub mod traversal;
-pub mod util;
pub mod incremental;
pub mod wrapper;