[package]
edition = "2021"
rust-version = "1.75"
name = "remitmd"
version = "0.2.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for the remit.md universal AI payment protocol - USDC payments, escrow, streaming, tabs, bounties, and deposits for AI agents"
homepage = "https://remit.md"
documentation = "https://docs.rs/remitmd"
readme = "README.md"
keywords = [
"payments",
"usdc",
"ethereum",
"ai-agents",
"blockchain",
]
categories = [
"finance",
"api-bindings",
"network-programming",
]
license = "MIT"
repository = "https://github.com/remit-md/sdk"
[lib]
name = "remitmd"
path = "src/lib.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[test]]
name = "acceptance"
path = "tests/acceptance.rs"
[[test]]
name = "cli_signer_test"
path = "tests/cli_signer_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dirs]
version = "5"
[dependencies.getrandom]
version = "0.2"
[dependencies.hex]
version = "0.4"
[dependencies.k256]
version = "0.13"
features = ["ecdsa"]
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rust_decimal]
version = "1"
features = ["serde-float"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha3]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.which]
version = "7"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.rand_core]
version = "0.6"
features = ["getrandom"]
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dev-dependencies.rust_decimal_macros]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]