extern crate crossbeam;
#[cfg(all(target_os = "macos", not(feature = "gtk")))]
#[macro_use]
extern crate objc;
#[cfg(all(target_os = "macos", not(feature = "gtk")))]
extern crate cocoa;
#[cfg(all(target_os = "macos", not(feature = "gtk")))]
extern crate core_graphics;
#[cfg(all(target_os = "macos", not(feature = "gtk")))]
#[path = "cocoa/mod.rs"]
mod cacao;
#[cfg(all(target_os = "macos", not(feature = "gtk")))]
pub use cacao::program;
#[cfg(any(feature = "gtk", not(target_os = "macos")))]
extern crate gtk;
#[cfg(any(feature = "gtk", not(target_os = "macos")))]
#[path = "gtk/mod.rs"]
mod gtk3;
#[cfg(any(feature = "gtk", not(target_os = "macos")))]
pub use gtk3::program;
#[macro_use]
mod tree;
mod atomic_box;
mod stream;
pub mod dom;