zellij/zellij-utils/src/lib.rs
Aram Drevekenin 7141779153
chore(deps): move from termion to termwiz for STDIN handling (#1249)
* fix(deps): switch from termion to termwiz for STDIN parsing

* style(fmt): clippy

* style(fmt): moar clippy

* style(fmt): rustfmt

* fix(tests): e2e mouse press

* style(fmt): rustfmt

* bring back polling

* fmt fmt fmt

* fix some e2e flakiness
2022-03-23 09:08:35 +01:00

25 lines
396 B
Rust

pub mod channels;
pub mod cli;
pub mod consts;
pub mod envs;
pub mod errors;
pub mod input;
pub mod ipc;
pub mod logging;
pub mod pane_size;
pub mod position;
pub mod setup;
pub mod shared;
pub use anyhow;
pub use async_std;
pub use clap;
pub use interprocess;
pub use libc;
pub use nix;
pub use serde;
pub use serde_yaml;
pub use signal_hook;
pub use termwiz;
pub use vte;
pub use zellij_tile;