diff options
Diffstat (limited to 'components/gfx_traits/lib.rs')
-rw-r--r-- | components/gfx_traits/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/gfx_traits/lib.rs b/components/gfx_traits/lib.rs index ea77933ce89..2500db1db20 100644 --- a/components/gfx_traits/lib.rs +++ b/components/gfx_traits/lib.rs @@ -4,6 +4,12 @@ #![crate_name = "gfx_traits"] #![crate_type = "rlib"] + extern crate azure; +extern crate layers; +extern crate msg; pub mod color; +mod paint_listener; + +pub use paint_listener::PaintListener; |