blob: a708b1bd193297f3abed88ffa009458ad8a5d569 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#[doc(no_inline)]
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;
|