mj 0.4.3

My Journal - personal tool to capture ideas, work with journals, notes and tasks in your favourite text $EDITOR.
Documentation
pub use crate::core::*;
pub use std::default::Default;
pub use std::io;
pub use std::thread::sleep;
pub use std::time::Duration;
pub use super::processor::*;
pub use super::query::*;
pub use super::state::*;
pub use termion::AsyncReader;
pub use termion::event::Key;
pub use termion::input::{Keys, TermRead};
pub use termion::raw::{IntoRawMode, RawTerminal};
pub use tui::backend::{Backend, TermionBackend};
pub use tui::layout::*;
pub use tui::style::*;
pub use tui::terminal::{Frame, Terminal};
pub use tui::widgets::*;

pub type RawStdout<'a> = RawTerminal<io::StdoutLock<'a>>;
pub type Term<'a> = Terminal<TermionBackend<RawStdout<'a>>>;