2020-01-20 09:49:17 +01:00
//! The styling library of Iced.
//!
//! It contains a set of styles and stylesheets for most of the built-in
//! widgets.
2020-11-26 07:22:03 +01:00
//!
2021-12-23 09:34:37 +02:00
//! 
2021-12-08 08:04:46 +01:00
#![ doc(
2021-12-09 15:10:38 +07:00
html_logo_url = " https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg "
2021-12-08 08:04:46 +01:00
) ]
2023-09-09 20:58:45 +02:00
#![ forbid(unsafe_code, rust_2018_idioms) ]
2022-07-09 18:03:59 +02:00
#![ deny(
unused_results ,
2024-03-04 03:57:03 +01:00
// missing_docs,
2023-09-09 20:58:45 +02:00
unused_results ,
rustdoc ::broken_intra_doc_links
2022-07-09 18:03:59 +02:00
) ]
2023-03-04 05:37:11 +01:00
pub use iced_core as core ;
2020-06-12 22:12:15 +02:00
2022-05-26 19:02:15 +02:00
pub mod application ;
2020-06-11 20:41:11 +02:00
pub mod menu ;
2021-01-01 15:28:38 +01:00
pub mod pane_grid ;
2020-07-10 02:50:47 +02:00
pub mod pick_list ;
2020-08-13 12:54:34 -05:00
pub mod rule ;
2022-11-16 17:42:41 +01:00
pub mod svg ;
2023-09-12 14:51:00 +02:00
pub mod text_editor ;
2022-05-14 01:47:55 +02:00
pub mod theme ;
2020-09-19 18:44:27 +02:00
pub mod toggler ;
2022-05-14 01:47:55 +02:00
pub use theme ::Theme ;