shell-compose 0.4.0

Lightweight background process runner for long-running or scheduled jobs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(not(test), warn(unused_crate_dependencies))]

mod command;
mod dispatcher;
mod display;
mod ipc;
mod justfile;
mod runner;

pub use command::*;
pub use dispatcher::*;
pub use display::*;
pub use ipc::*;
pub use justfile::*;
pub use runner::*;