[package]
edition = "2018"
name = "postmark"
version = "0.11.5"
authors = ["Pierre-Alexandre St-Jean <pa@stjean.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Postmark rust client"
homepage = "https://github.com/pastjean/postmark-rs"
documentation = "https://docs.rs/postmark"
readme = "README.md"
keywords = [
"postmark",
"email",
"e-mail",
"http",
]
categories = [
"api-bindings",
"email",
"web-programming::http-client",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pastjean/postmark-rs"
[features]
default = []
indexmap = ["dep:indexmap"]
reqwest = ["dep:reqwest"]
reqwest-native-tls = [
"reqwest",
"reqwest/native-tls",
]
reqwest-rustls-tls = [
"reqwest",
"reqwest/rustls-tls",
]
[lib]
name = "postmark"
path = "src/lib.rs"
[[test]]
name = "send_email"
path = "tests/send_email.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1.6"
[dependencies.http]
version = "1.1"
[dependencies.indexmap]
version = "2.2"
features = ["serde"]
optional = true
[dependencies.reqwest]
version = "0.12"
optional = true
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.time]
version = "0.3.17"
features = [
"serde-human-readable",
"macros",
]
[dependencies.typed-builder]
version = "0.21"
[dependencies.url]
version = "2.5"
[dev-dependencies.httptest]
version = "0.16"
[dev-dependencies.tokio]
version = "1.38"
features = [
"rt",
"macros",
]
default-features = false