diff options
Diffstat (limited to 'style/src/lib.rs')
-rw-r--r-- | style/src/lib.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/style/src/lib.rs b/style/src/lib.rs index e4556f67..0dde9582 100644 --- a/style/src/lib.rs +++ b/style/src/lib.rs @@ -7,8 +7,19 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg" )] +#![deny( + unused_results, + clippy::extra_unused_lifetimes, + clippy::from_over_into, + clippy::needless_borrow, + clippy::new_without_default, + clippy::useless_conversion +)] +#![forbid(unsafe_code, rust_2018_idioms)] +#![allow(clippy::inherent_to_string, clippy::type_complexity)] pub use iced_core::{Background, Color}; +pub mod application; pub mod button; pub mod checkbox; pub mod container; @@ -20,5 +31,9 @@ pub mod radio; pub mod rule; pub mod scrollable; pub mod slider; +pub mod text; pub mod text_input; +pub mod theme; pub mod toggler; + +pub use theme::Theme; |