[package]
edition = "2021"
rust-version = "1.85"
name = "omh"
version = "0.2.0"
authors = ["Nathanaƫl Cherrier <nathanael@cherrier.dev>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Launch any coding harness, in a sandbox, with your setup already there."
readme = "README.md"
keywords = [
"agent",
"sandbox",
"claude",
"mcp",
"devtools",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/mindsers/ohmyharness"
[[bin]]
name = "omh"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "docs"
path = "tests/docs.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"