[package]
edition = "2024"
name = "paystack-client"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple Rust client for Paystack payments (initialize & verify)."
documentation = "https://docs.rs/paystack-client"
readme = "README.md"
keywords = [
"paystack",
"payments",
"api",
"rust",
]
categories = [
"api-bindings",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/anomalous254/paystack-client"
[lib]
name = "paystack_client"
path = "src/lib.rs"
[[test]]
name = "payment_test"
path = "tests/payment_test.rs"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.uuid]
version = "1.18.0"
features = ["v4"]