[package]
edition = "2024"
rust-version = "1.95"
name = "koban-cli"
version = "0.2.0"
authors = ["James Brink <brink.james@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust CLI for Invoice Ninja, built for humans and AI agents"
homepage = "https://github.com/jamesbrink/koban"
documentation = "https://docs.rs/koban-cli"
readme = "README.md"
keywords = [
"invoice-ninja",
"invoice",
"cli",
"agents",
"api",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/jamesbrink/koban"
[features]
default = ["keychain"]
keychain = ["dep:keyring"]
[[bin]]
name = "koban"
path = "src/main.rs"
[[test]]
name = "auth_tests"
path = "tests/auth_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "code_health_tests"
path = "tests/code_health_tests.rs"
[[test]]
name = "completions_tests"
path = "tests/completions_tests.rs"
[[test]]
name = "list_pagination_tests"
path = "tests/list_pagination_tests.rs"
[[test]]
name = "path_safety_tests"
path = "tests/path_safety_tests.rs"
[[test]]
name = "skill_tests"
path = "tests/skill_tests.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"derive",
"wrap_help",
]
[dependencies.clap_complete]
version = "4.6.0"
features = ["unstable-dynamic"]
[dependencies.clap_complete_nushell]
version = "4.6.0"
[dependencies.directories]
version = "6.0.0"
[dependencies.flate2]
version = "1.1.5"
[dependencies.keyring]
version = "3.6.3"
features = [
"apple-native",
"windows-native",
"linux-native",
]
optional = true
default-features = false
[dependencies.koban]
version = "0.2.0"
features = ["miette"]
[dependencies.miette]
version = "7.6.0"
features = ["fancy"]
[dependencies.rpassword]
version = "7.5.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sha2]
version = "0.10.9"
[dependencies.tabled]
version = "0.20.0"
[dependencies.tar]
version = "0.4.44"
[dependencies.tokio]
version = "1.52.3"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.url]
version = "2.5.8"
[dependencies.zip]
version = "8.6.0"
features = ["deflate-flate2"]
default-features = false
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.httpmock]
version = "0.8.3"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.tempfile]
version = "3.23.0"