18 lines
526 B
TOML
18 lines
526 B
TOML
[package]
|
|
name = "plunk-rs"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["Antfroze"]
|
|
description = "Async Rust client for the Plunk transactional email API"
|
|
license = "MIT"
|
|
repository = "https://git.coldspire.com/Antfroze/plunk-rs"
|
|
keywords = ["plunk", "email", "transactional", "api"]
|
|
categories = ["api-bindings", "email"]
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
url = "2"
|