oy-cli 0.10.3

Local AI coding CLI for inspecting, editing, running commands, and auditing repositories
Documentation
[package]
name = "oy-cli"
version = "0.10.3"
edition = "2024"
rust-version = "1.91.1"
description = "Local AI coding CLI for inspecting, editing, running commands, and auditing repositories"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/wagov-dtt/oy-cli"
homepage = "https://github.com/wagov-dtt/oy-cli"
keywords = ["ai", "cli", "coding", "audit", "agent"]
categories = ["command-line-utilities", "development-tools"]

[lib]
name = "oy"
path = "src/lib.rs"

[[bin]]
name = "oy"
path = "src/main.rs"

[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 }"

[dependencies]
anyhow = "1.0"
backon = { version = "1.6", features = ["tokio"] }
chrono = { version = "0.4", features = ["clock", "serde"] }
crc32fast = "1.5"
clap = { version = "4.6", features = ["derive"] }
dirs = "6.0"
glob = "0.3"
globset = "0.4"
fff-search = "0.8.1"
hmac = "0.12"
html2md = "0.2"
ignore = "0.4"
ip_rfc = "0.1"
reedline-repl-rs = { version = "1.3", features = ["async", "shlex"] }
dialoguer = { version = "0.12", default-features = false }
diffy = "0.5"
strip-ansi-escapes = "0.2"
terminal_size = "0.4"
unicode-width = "0.2"
regex = "1.11"
bat = { version = "0.26.1", default-features = false, features = ["regex-fancy"] }

serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
tiktoken-rs = "0.11"
tokei = { version = "14.0", default-features = false }
reqwest = { version = "0.13", default-features = false, features = ["rustls", "http2", "stream"] }
futures-util = "0.3"
tokio = { version = "1.52", features = ["macros", "rt-multi-thread", "process", "signal", "time", "net", "io-util"] }
toon-format = { version = "0.4.5", default-features = false }
url = "2.5"
tempfile = "3.27"

[dev-dependencies]
insta = "1.47"

[profile.dev]
debug = "line-tables-only"

[profile.release]
codegen-units = 1
lto = "fat"
opt-level = "z"
strip = "symbols"