Move PaintListener to gfx_traits, Fixes #8834

Adding layers and msg dependency to gfx_traits.
This commit is contained in:
Tomas Cernaj 2015-12-11 18:43:10 +01:00
parent f5eec35cb4
commit 701aebee48
9 changed files with 57 additions and 34 deletions

View file

@ -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;