[package]
edition = "2021"
name = "fly402-client"
version = "0.0.3"
authors = ["402fly Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP client library for the X402 payment protocol"
homepage = "https://github.com/SerPepe/402fly"
readme = "README.md"
keywords = [
"x402",
"payment",
"http",
"client",
"solana",
]
categories = [
"web-programming",
"network-programming",
]
license = "MIT"
repository = "https://github.com/fly402/fly402"
[lib]
name = "fly402_client"
path = "src/lib.rs"
[dependencies.fly402-core]
version = "0.0.3"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.solana-sdk]
version = "2.0"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dev-dependencies.tokio]
version = "1.35"
features = [
"full",
"macros",
"rt-multi-thread",
]