1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#![deny(missing_docs)]

//! This library contains some widgets for relm.
//!
//! These widgets got extracted from OMMUI-related projects so they can
//! be used in several of them.

#[macro_use]
extern crate relm_derive;
#[macro_use]
extern crate relm;

extern crate gdk_pixbuf;
extern crate glib;
extern crate gtk;
extern crate uuid;

pub mod description_listview;
pub mod message;
pub mod progress;