summaryrefslogtreecommitdiffstats
path: root/winit/src/lib.rs
blob: d9482fe4c01a63a2daad2c0b8f7ce8c7a836b818 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use iced_native::*;
pub use winit;

pub mod conversion;

mod application;

pub use application::Application;

// We disable debug capabilities on release builds unless the `debug` feature
// is explicitly enabled.
#[cfg_attr(feature = "debug", path = "debug/basic.rs")]
#[cfg_attr(not(feature = "debug"), path = "debug/null.rs")]
mod debug;

use debug::Debug;