summaryrefslogtreecommitdiffstats
path: root/zellij-utils/src/lib.rs
blob: 892dcbc15e19219e2d1c5d99d1eaf240cf72f1e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pub mod cli;
pub mod consts;
pub mod data;
pub mod envs;
pub mod errors;
pub mod input;
pub mod kdl;
pub mod pane_size;
pub mod position;
pub mod setup;
pub mod shared;

// The following modules can't be used when targeting wasm
#[cfg(not(target_family = "wasm"))]
pub mod channels; // Requires async_std
#[cfg(not(target_family = "wasm"))]
pub mod ipc; // Requires interprocess
#[cfg(not(target_family = "wasm"))]
pub mod logging; // Requires log4rs

#[cfg(not(target_family = "wasm"))]
pub use ::{
    anyhow, async_std, clap, interprocess, lazy_static, libc, nix, regex, serde, signal_hook,
    tempfile, termwiz, vte,
};