iced-yoda/glutin/src/lib.rs

26 lines
717 B
Rust
Raw Normal View History

2020-05-28 02:57:03 +02:00
//! A windowing shell for [`iced`], on top of [`glutin`].
//!
2020-11-26 07:22:03 +01:00
//! ![The native path of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/native.png?raw=true)
//!
2020-05-28 02:57:03 +02:00
//! [`iced`]: https://github.com/hecrj/iced
//! [`glutin`]: https://github.com/rust-windowing/glutin
#![deny(missing_docs)]
2020-05-21 00:37:47 +02:00
#![deny(missing_debug_implementations)]
#![deny(unused_results)]
#![deny(unsafe_code)]
#![forbid(rust_2018_idioms)]
2020-05-28 02:57:03 +02:00
pub use glutin;
2020-05-21 00:37:47 +02:00
#[doc(no_inline)]
pub use iced_native::*;
2020-05-21 04:27:31 +02:00
pub mod application;
2020-05-21 00:37:47 +02:00
2020-05-28 02:57:03 +02:00
pub use iced_winit::settings;
pub use iced_winit::{Clipboard, Error, Mode};
2020-05-28 02:57:03 +02:00
#[doc(no_inline)]
pub use application::Application;
#[doc(no_inline)]
pub use settings::Settings;