[package]
edition = "2024"
rust-version = "1.88"
name = "kasapay-core"
version = "0.0.5"
authors = ["kasapay contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provider-neutral payment types and the Provider trait behind kasapay"
readme = false
keywords = [
"payments",
"stripe",
"iyzico",
]
categories = [
"api-bindings",
"web-programming",
]
license = "MIT"
repository = "https://github.com/productdevbook/kasapay"
[lib]
name = "kasapay_core"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1.92"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
features = ["raw_value"]
[dependencies.thiserror]
version = "2.0.20"
[dependencies.url]
version = "2.5.8"
[lints.clippy]
expect_used = "warn"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"