[package]
edition = "2024"
rust-version = "1.96"
name = "oy-cli"
version = "0.11.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenCode launcher and deterministic MCP helpers for repository audit and review workflows"
homepage = "https://github.com/wagov-dtt/oy-cli"
readme = "README.md"
keywords = [
"ai",
"cli",
"opencode",
"mcp",
"audit",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/wagov-dtt/oy-cli"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/oy-v{ version }-{ target }.tar.gz"
pkg-fmt = "tgz"
bin-dir = "{ bin }{ binary-ext }"
[lib]
name = "oy"
path = "src/lib.rs"
[[bin]]
name = "oy"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.dirs]
version = "6.0"
[dependencies.ignore]
version = "0.4"
[dependencies.regex]
version = "1.11"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.27"
[dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.insta]
version = "1.47"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_System_Threading",
]
[profile.dev]
debug = "line-tables-only"
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
strip = "symbols"