[package]
edition = "2021"
rust-version = "1.84"
name = "open-payments"
version = "0.2.0"
authors = ["Interledger <tech@interledger.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Open Payments Rust SDK library with types, HTTP client and signature utilities"
homepage = "https://github.com/interledger/open-payments-rust"
readme = "README.md"
keywords = [
"open-payments",
"interledger",
"payments",
"http-signatures",
"gnap",
]
categories = [
"api-bindings",
"web-programming",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/interledger/open-payments-rust"
[features]
default = []
[lib]
name = "open_payments"
path = "src/lib.rs"
[[bin]]
name = "http-signature-example"
path = "src/http_signature/examples/generate_signature.rs"
[[test]]
name = "client_request_tests"
path = "tests/client_request_tests.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[[test]]
name = "types_roundtrip"
path = "tests/types_roundtrip.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.chrono]
version = "0.4.35"
features = ["serde"]
[dependencies.ed25519-dalek]
version = "2.0"
features = ["rand_core"]
[dependencies.http]
version = "1.3.1"
[dependencies.log]
version = "0.4"
[dependencies.pem]
version = "3.0"
[dependencies.pkcs8]
version = "0.10"
[dependencies.rand]
version = "0.8.6"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_with]
version = "3.7"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.url]
version = "2.4"
[dev-dependencies.dotenv]
version = "0.15"
[dev-dependencies.tempfile]
version = "3.20.0"
[dev-dependencies.thirtyfour]
version = "0.33"
[dev-dependencies.tokio]
version = "1.45.0"
features = ["full"]
[dev-dependencies.uuid]
version = "1.16"
features = [
"v4",
"serde",
]
[dev-dependencies.wiremock]
version = "0.6"