[package]
edition = "2021"
name = "xendit"
version = "0.0.2"
authors = ["Hanjara Adhyatma"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Xendit Rust SDK"
homepage = "https://x.com/papanberjalan"
readme = "README.md"
keywords = ["finance"]
categories = ["finance"]
license = "MIT"
repository = "https://github.com/mashanz/xendit-rust"
[lib]
name = "xendit"
path = "src/lib.rs"
[[bin]]
name = "xendit"
path = "src/main.rs"
[[test]]
name = "balance"
path = "tests/balance.rs"
[[test]]
name = "customer"
path = "tests/customer.rs"
[[test]]
name = "invoice"
path = "tests/invoice.rs"
[[test]]
name = "payment_method"
path = "tests/payment_method.rs"
[[test]]
name = "payment_request"
path = "tests/payment_request.rs"
[[test]]
name = "payout"
path = "tests/payout.rs"
[[test]]
name = "transaction"
path = "tests/transaction.rs"
[dependencies.chrono]
version = "0.4.38"
features = ["serde"]
[dependencies.data-encoding]
version = "2.6.0"
[dependencies.reqwest]
version = "0.12.4"
features = ["json"]
[dependencies.serde]
version = "1.0.200"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.116"
[dependencies.serde_qs]
version = "0.13.0"
[dependencies.serde_with]
version = "3.8.1"
[dependencies.tokio]
version = "1.37.0"
features = ["full"]
[dev-dependencies.dotenv]
version = "0.15.0"