nrelm-components 0.1.1

An idiomatic GUI library inspired by Elm and based on gtk3-rs
//! Reusable components for Relm4.
#![doc(html_logo_url = "https://neorelm.gitlab.io/neorelm/assets/NeoRelm_logo_transparent.svg")]
#![doc(html_favicon_url = "https://neorelm.gitlab.io/neorelm/assets/NeoRelm_logo_circular.svg")]
#![warn(
    missing_debug_implementations,
    missing_docs,
    rust_2018_idioms,
    unreachable_pub,
    unused_qualifications,
    clippy::cargo,
    clippy::must_use_candidate
)]
#![allow(clippy::multiple_crate_versions)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![allow(deprecated)]

pub mod alert;
pub mod open_button;
pub mod open_dialog;
pub mod save_dialog;
pub mod simple_combo_box;

#[cfg(feature = "web")]
#[cfg_attr(docsrs, doc(cfg(feature = "web")))]
pub mod web_image;