wave-api 0.1.0

Typed Rust client for the Wave Accounting GraphQL API
Documentation
[package]
name = "wave-api"
version = "0.1.0"
edition = "2021"
description = "Typed Rust client for the Wave Accounting GraphQL API"
license = "MIT"
repository = "https://github.com/svenkratz/wave_claw"
keywords = ["wave", "accounting", "graphql", "api", "invoice"]
categories = ["api-bindings"]

[dependencies]
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rust_decimal = { version = "1", features = ["serde-with-str"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"

[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
dotenvy = "0.15"
rust_decimal_macros = "1"
clap = { version = "4", features = ["derive"] }

[[example]]
name = "list_businesses"
path = "examples/list_businesses.rs"

[[example]]
name = "create_invoice"
path = "examples/create_invoice.rs"

[[example]]
name = "profit_and_loss"
path = "examples/profit_and_loss.rs"