1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#![feature(doc_cfg)]
//! Collection of reusable and easily configurable components for Relm4.
#![warn(missing_docs, rust_2018_idioms, unreachable_pub)]
#![doc(html_logo_url = "https://relm4.org/icons/relm4_logo.svg")]
#![doc(html_favicon_url = "https://relm4.org/icons/relm4_org.svg")]
pub mod alert;
pub mod open_button;
pub mod open_dialog;
pub mod save_dialog;
mod traits;
pub use traits::*;