[package]
edition = "2024"
rust-version = "1.90"
name = "yuki-client"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed async client for the Yuki bookkeeping SOAP API"
readme = "README.md"
keywords = [
"yuki",
"bookkeeping",
"soap",
"accounting",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/rvben/yuki-cli"
[lib]
name = "yuki_client"
path = "src/lib.rs"
[[test]]
name = "error"
path = "tests/error.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.quick-xml]
version = "0.37"
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false
[dependencies.thiserror]
version = "2"