[package]
edition = "2021"
rust-version = "1.82"
name = "oharness-tools"
version = "0.1.0"
authors = ["open-harness contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ToolSet trait and bundled tool kits (bash, filesystem) for open-harness"
homepage = "https://github.com/aishfenton/open-harness"
readme = "README.md"
keywords = [
"agent",
"tools",
"llm",
"bash",
"filesystem",
]
categories = [
"development-tools",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aishfenton/open-harness"
[features]
bash = []
default = [
"bash",
"fs",
]
fs = []
[lib]
name = "oharness_tools"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.oharness-core]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"fs",
"io-util",
"time",
"process",
]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"fs",
"io-util",
"time",
"process",
"macros",
"rt-multi-thread",
"time",
]
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1