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.
|
2019-11-03 05:06:53 +01:00
|
|
|
#[cfg_attr(feature = "debug", path = "debug/basic.rs")]
|
|
|
|
|
#[cfg_attr(not(feature = "debug"), path = "debug/null.rs")]
|
2019-11-03 04:39:11 +01:00
|
|
|
mod debug;
|
|
|
|
|
|
|
|
|
|
use debug::Debug;
|