[package]
edition = "2021"
rust-version = "1.86"
name = "reevit"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Rust SDK for the Reevit payments API"
homepage = "https://reevit.io"
documentation = "https://docs.rs/reevit"
readme = "README.md"
keywords = [
"payments",
"fintech",
"africa",
"reevit",
]
categories = [
"api-bindings",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/Reevit-Platform/rust-sdk"
[lib]
name = "reevit"
path = "src/lib.rs"
[[test]]
name = "checkout_sessions"
path = "tests/checkout_sessions.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "resources"
path = "tests/resources.rs"
[[test]]
name = "webhook_signatures"
path = "tests/webhook_signatures.rs"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.percent-encoding]
version = "2"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.url]
version = "2"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "=0.6.2"
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_code = "forbid"