[package]
edition = "2021"
name = "postmark-client"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Postmark API client using reqwest"
documentation = "https://docs.rs/postmark-client"
readme = "README.md"
keywords = ["postmark"]
categories = ["api-bindings"]
license = "MIT"
repository = "https://gitlab.com/phillipcouto/postmark-client/"
[lib]
name = "postmark_client"
path = "src/lib.rs"
[[test]]
name = "types"
path = "tests/types.rs"
[dependencies.base64]
version = "0.22"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"query",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["serde_derive"]
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.serde_json]
version = "1.0"