1//! A windowing shell for Iced, on top of [`winit`].
2//!
3//! 
4//!
5//! `iced_winit` offers some convenient abstractions on top of [`iced_runtime`]
6//! to quickstart development when using [`winit`].
7//!
8//! It exposes a renderer-agnostic [`Program`] trait that can be implemented
9//! and then run with a simple call. The use of this trait is optional.
10//!
11//! Additionally, a [`conversion`] module is available for users that decide to
12//! implement a custom event loop.
13//!
14//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/0.13/runtime
15//! [`winit`]: https://github.com/rust-windowing/winit
16//! [`conversion`]: crate::conversion
17#![doc(
18 html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
19)]
20#![cfg_attr(docsrs, feature(doc_auto_cfg))]
21pub use iced_graphics as graphics;
22pub use iced_runtime as runtime;
23pub use iced_runtime::core;
24pub use iced_runtime::futures;
25pub use winit;
2627#[cfg(feature = "a11y")]
28pub mod a11y;
29pub mod clipboard;
30pub mod conversion;
31pub mod platform_specific;
32pub mod settings;
3334#[cfg(feature = "program")]
35pub mod program;
3637#[cfg(feature = "system")]
38pub mod system;
3940mod error;
41mod proxy;
4243pub use clipboard::Clipboard;
44pub use error::Error;
45pub use proxy::Proxy;
46pub use settings::Settings;
4748#[cfg(feature = "program")]
49pub use program::Program;
5051pub use platform_specific::*;