diff options
author | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2020-02-11 18:50:54 +0100 |
---|---|---|
committer | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2020-02-21 11:11:00 +0100 |
commit | 5cbe05366bf11de3bb38e89a3d2ae2aacfadf2b6 (patch) | |
tree | b57e0fb695be560d35fdc347387f1d07c323c212 /components/layout_2020/lib.rs | |
parent | 9c3feb746b5039339cb4e20aff9a3f72f2963170 (diff) | |
download | servo-5cbe05366bf11de3bb38e89a3d2ae2aacfadf2b6.tar.gz servo-5cbe05366bf11de3bb38e89a3d2ae2aacfadf2b6.zip |
Add layout debugger support to layout_2020
Diffstat (limited to 'components/layout_2020/lib.rs')
-rw-r--r-- | components/layout_2020/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/components/layout_2020/lib.rs b/components/layout_2020/lib.rs index 28ad31ae146..62e1f1b9470 100644 --- a/components/layout_2020/lib.rs +++ b/components/layout_2020/lib.rs @@ -5,6 +5,9 @@ #![deny(unsafe_code)] #![feature(exact_size_is_empty)] +#[macro_use] +extern crate serde; + pub mod context; pub mod data; pub mod display_list; @@ -14,6 +17,8 @@ mod flow; mod formatting_contexts; mod fragments; mod geom; +#[macro_use] +pub mod layout_debug; mod opaque_node; mod positioned; pub mod query; |