[package]
edition = "2024"
rust-version = "1.85"
name = "oven-cli"
version = "0.9.0"
authors = ["Clay Harmon"]
build = false
exclude = [
".oven/",
".claude/",
".github/",
"action/",
"tests/",
"justfile",
"deny.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI that runs Claude Code agent pipelines against GitHub issues"
homepage = "https://github.com/clayharmon/oven-cli"
readme = "README.md"
keywords = [
"cli",
"claude",
"github",
"automation",
"ai-agents",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/clayharmon/oven-cli"
[lib]
name = "oven_cli"
path = "src/lib.rs"
[[bin]]
name = "oven"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.askama]
version = "0.14.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.rusqlite_migration]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.assert_fs]
version = "1"
[dev-dependencies.mockall]
version = "0.13"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.rstest]
version = "0.23"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage_nightly)"]
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"