meli/ui/src/lib.rs

72 lines
1.5 KiB
Rust
Raw Normal View History

/*
2018-08-07 15:01:15 +03:00
* meli - ui crate.
*
2018-08-07 15:01:15 +03:00
* Copyright 2017-2018 Manos Pitsidianakis
*
* This file is part of meli.
*
* meli is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* meli is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with meli. If not, see <http://www.gnu.org/licenses/>.
*/
2018-08-06 22:20:34 +03:00
/*!
* This library exports the public types and methods of its modules
*/
2019-05-01 19:20:33 +03:00
#[macro_use]
2018-07-18 10:42:52 +03:00
extern crate melib;
extern crate mime_apps;
extern crate notify_rust;
2018-07-21 11:20:13 +03:00
#[macro_use]
2018-08-19 13:12:48 +03:00
extern crate serde_derive;
#[macro_use]
2018-07-21 11:20:13 +03:00
extern crate chan;
extern crate chan_signal;
extern crate linkify;
extern crate uuid;
2018-08-06 14:58:54 +03:00
extern crate fnv;
2018-07-18 10:42:52 +03:00
extern crate termion;
#[macro_use]
extern crate nom;
2018-07-11 17:07:51 +03:00
2019-03-04 12:03:39 +02:00
extern crate serde_json;
2018-08-06 16:53:23 +03:00
use melib::*;
use std::collections::VecDeque;
2018-07-11 17:07:51 +03:00
2018-08-06 16:53:23 +03:00
#[macro_use]
mod types;
2019-06-18 21:13:58 +03:00
pub use crate::types::*;
2018-07-18 10:42:52 +03:00
2019-03-12 20:35:23 +02:00
#[macro_use]
mod terminal;
2019-06-18 21:13:58 +03:00
pub use crate::terminal::*;
2019-03-12 20:35:23 +02:00
2018-08-06 16:53:23 +03:00
#[macro_use]
mod execute;
2019-06-18 21:13:58 +03:00
use crate::execute::*;
2018-07-21 11:20:13 +03:00
2018-08-06 16:53:23 +03:00
pub mod state;
2019-06-18 21:13:58 +03:00
pub use crate::state::*;
2018-07-21 11:20:13 +03:00
2018-08-06 16:53:23 +03:00
pub mod components;
2019-06-18 21:13:58 +03:00
pub use crate::components::*;
2018-08-19 13:12:48 +03:00
pub mod conf;
2019-06-18 21:13:58 +03:00
pub use crate::conf::*;
2018-10-14 19:49:16 +03:00
pub mod workers;
2019-06-18 21:13:58 +03:00
pub use crate::workers::*;