[package]
edition = "2021"
rust-version = "1.86"
name = "paymos"
version = "1.1.0"
build = false
include = [
"/src/**",
"/tests/**",
"/conformance/contract.json",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Rust SDK for the Paymos Merchant API"
homepage = "https://paymos.io"
documentation = "https://docs.rs/paymos"
readme = "README.md"
keywords = [
"paymos",
"payments",
"merchant",
"stablecoin",
"api",
]
categories = [
"api-bindings",
"web-programming::http-client",
"cryptography",
]
license = "MIT"
repository = "https://github.com/Paymos-labs/rust-sdk"
[lib]
name = "paymos"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.hex]
version = "0.4.3"
[dependencies.hmac]
version = "0.13.0"
[dependencies.httpdate]
version = "1.0.3"
[dependencies.reqwest]
version = "0.13.4"
features = [
"json",
"rustls",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.0"
features = ["time"]
[dependencies.zeroize]
version = "1.8"
[dev-dependencies.tokio]
version = "1.0"
features = [
"macros",
"net",
"rt-multi-thread",
"sync",
"time",
]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"