[package]
edition = "2024"
rust-version = "1.90"
name = "yuki-cli"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI client for the Yuki bookkeeping SOAP API"
readme = "README.md"
keywords = [
"yuki",
"bookkeeping",
"soap",
"accounting",
"cli",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/rvben/yuki-cli"
[lib]
name = "yuki_cli"
path = "src/lib.rs"
[[bin]]
name = "yuki"
path = "src/main.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "output"
path = "tests/output.rs"
[[test]]
name = "parsers"
path = "tests/parsers.rs"
[[test]]
name = "period"
path = "tests/period.rs"
[[test]]
name = "soap_client"
path = "tests/soap_client.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.comfy-table]
version = "7"
[dependencies.owo-colors]
version = "4"
[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"