[package]
edition = "2021"
name = "yaak"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Translate natural language to bash commands using an OpenAI-compatible LLM"
homepage = "https://www.hanneshapke.com/yaak/"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/hanneshapke/yaak"
[package.metadata.deb]
maintainer = "Hannes Hapke <hannes.hapke@gmail.com>"
section = "utils"
priority = "optional"
depends = "$auto"
assets = [
[
"target/release/yaak",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/yaak/README.md",
"644",
],
[
"LICENSE",
"usr/share/doc/yaak/copyright",
"644",
],
[
"target/completions/yaak.bash",
"usr/share/bash-completion/completions/yaak",
"644",
],
[
"target/completions/_yaak",
"usr/share/zsh/vendor-completions/_yaak",
"644",
],
[
"target/completions/yaak.fish",
"usr/share/fish/vendor_completions.d/yaak.fish",
"644",
],
]
[[bin]]
name = "yaak"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4.6.0"
[dependencies.colored]
version = "2"
[dependencies.dialoguer]
version = "0.11"
[dependencies.dirs]
version = "5"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"blocking",
"rustls-tls",
]
default-features = false
[dependencies.rust-i18n]
version = "3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sys-locale]
version = "0.3"
[dependencies.tempfile]
version = "3"
optional = true
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"