[package]
edition = "2024"
rust-version = "1.92"
name = "szamlazz-cli"
version = "0.1.0"
authors = ["Márk Sági-Kazár <mark.sagikazar@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line client and local IPN and Adatkapcsolat receiver for szamlazz.hu"
readme = "README.md"
keywords = [
"szamlazz",
"invoice",
"billing",
"hungary",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sagikazarmark/szamlazz-rs"
[[bin]]
name = "szamlazz"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.103"
[dependencies.axum]
version = "0.8.9"
features = [
"tokio",
"http1",
]
default-features = false
[dependencies.clap]
version = "4.6.1"
features = [
"derive",
"env",
]
[dependencies.jiff]
version = "0.2.31"
features = [
"std",
"serde",
]
default-features = false
[dependencies.rust_decimal]
version = "1.42.1"
features = [
"serde",
"macros",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.szamlazz-adatkapcsolat]
version = "0.1.0"
features = ["axum"]
[dependencies.szamlazz-agent]
version = "0.1.0"
features = ["client-reqwest"]
[dependencies.szamlazz-ipn]
version = "0.1.0"
features = [
"axum",
"serde",
]
[dependencies.tokio]
version = "1.52.3"
features = [
"macros",
"rt-multi-thread",
"fs",
"signal",
"net",
]
default-features = false
[lints.clippy]
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(docsrs)"]