summaryrefslogtreecommitdiffstats
path: root/winit/src/lib.rs
blob: f66c0553ffa808efca973e958f50f34de6347099 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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(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;