oharness-tools 0.1.0

ToolSet trait and bundled tool kits (bash, filesystem) for open-harness
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `ToolSet` trait and bundled tool kits.

pub mod context;
pub mod toolset;

#[cfg(feature = "bash")]
pub mod bash;
#[cfg(feature = "fs")]
pub mod fs;

pub use context::{ToolContext, Workspace};
pub use toolset::{ToolError, ToolOutcome, ToolSet};

pub use oharness_core::message::ToolOutput;
pub use oharness_core::ToolSpec;