[package]
edition = "2021"
name = "rustchain-client"
version = "0.1.0"
authors = ["NOX Ventures <noxxxxybot@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP client library for the RustChain Proof-of-Antiquity blockchain API. Query node health, epochs, miners, wallets, attestations, and governance proposals."
homepage = "https://rustchain.org"
documentation = "https://docs.rs/rustchain-client"
readme = "README.md"
keywords = [
"rustchain",
"blockchain",
"proof-of-antiquity",
"crypto",
"api-client",
]
categories = [
"api-bindings",
"cryptography::cryptocurrencies",
]
license = "MIT"
repository = "https://github.com/noxxxxybot-sketch/rustchain-client"
[lib]
name = "rustchain_client"
path = "src/lib.rs"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]