Skip to main content

asimov_runner/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! ```rust
4//! # use asimov_runner::*;
5//! ```
6
7#![allow(unused_imports)]
8
9pub use asimov_patterns::Execute;
10pub use clientele::SysexitsError;
11pub use tokio::process::Command;
12
13#[cfg(feature = "std")]
14pub mod executor;
15#[cfg(feature = "std")]
16pub use executor::*;
17
18#[cfg(feature = "std")]
19pub mod executor_error;
20#[cfg(feature = "std")]
21pub use executor_error::*;
22
23pub mod input;
24pub use input::*;
25
26pub mod output;
27pub use output::*;
28
29pub mod pipeline;
30pub use pipeline::*;
31
32#[cfg(feature = "std")]
33pub mod programs;
34#[cfg(feature = "std")]
35pub use programs::*;