Implements the first five harness-tools: read, write, bash (with timeout/output truncation), glob, and grep, plus shared path-resolution helpers. Wires them into the core tool registry and processor.
33 lines
826 B
TOML
33 lines
826 B
TOML
[package]
|
|
name = "harness-tools"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
harness-core = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
schemars = { workspace = true }
|
|
ignore = { workspace = true }
|
|
globset = { workspace = true }
|
|
grep-searcher = { workspace = true }
|
|
grep-regex = { workspace = true }
|
|
grep-matcher = { workspace = true }
|
|
similar = { workspace = true }
|
|
shell-words = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
|
|
[lints]
|
|
workspace = true
|