2019-10-03 00:01:45 +02:00
|
|
|
pub use iced_native::*;
|
2019-10-03 00:08:16 +02:00
|
|
|
pub use winit;
|
2019-10-09 05:36:49 +02:00
|
|
|
|
2019-10-10 05:44:33 +02:00
|
|
|
pub mod conversion;
|
|
|
|
|
|
2019-10-10 05:50:01 +02:00
|
|
|
mod application;
|
2019-10-09 05:36:49 +02:00
|
|
|
|
2019-10-10 05:50:01 +02:00
|
|
|
pub use application::Application;
|
2019-11-03 04:39:11 +01:00
|
|
|
|
|
|
|
|
// We disable debug capabilities on release builds unless the `debug` feature
|
|
|
|
|
// is explicitly enabled.
|
|
|
|
|
#[cfg_attr(any(debug_assertions, feature = "debug"), path = "debug/basic.rs")]
|
|
|
|
|
#[cfg_attr(
|
|
|
|
|
not(any(debug_assertions, feature = "debug")),
|
|
|
|
|
path = "debug/null.rs"
|
|
|
|
|
)]
|
|
|
|
|
mod debug;
|
|
|
|
|
|
|
|
|
|
use debug::Debug;
|