* vendoring common_path * add original license to common_path * Clarify license scope * refactor: remove rand dependency --------- Co-authored-by: Aram Drevekenin <aram@poor.dev>
35 lines
922 B
Rust
35 lines
922 B
Rust
pub mod cli;
|
|
pub mod consts;
|
|
pub mod data;
|
|
pub mod envs;
|
|
pub mod errors;
|
|
pub mod home;
|
|
pub mod input;
|
|
pub mod kdl;
|
|
pub mod pane_size;
|
|
pub mod plugin_api;
|
|
pub mod position;
|
|
pub mod session_serialization;
|
|
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 common_path;
|
|
#[cfg(not(target_family = "wasm"))]
|
|
pub mod downloader; // 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_channel, async_std, clap, humantime, interprocess, isahc, lazy_static, libc,
|
|
miette, nix, notify_debouncer_full, regex, serde, signal_hook, tempfile, termwiz, url, uuid,
|
|
vte,
|
|
};
|
|
|
|
pub use ::prost;
|