[dependencies.bitcoin]
default-features = false
features = ["std", "serde"]
version = "0.32"
[dependencies.reqwest]
default-features = false
features = ["json"]
version = "0.12"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.url]
version = "2.5"
[dev-dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1.46"
[[example]]
name = "client"
path = "examples/client.rs"
[features]
default = ["rustls"]
nativetls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]
socks = ["reqwest/socks"]
[lib]
name = "ckpool_api"
path = "src/lib.rs"
[package]
authors = ["Yuki Kishimoto <yukikishimoto@protonmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A Rust client library for reading stats from CKPool."
edition = "2024"
homepage = "https://github.com/shadowylab/ckpool-api"
keywords = ["bitcoin", "ckpool", "api"]
license = "MIT"
name = "ckpool-api"
readme = "README.md"
repository = "https://github.com/shadowylab/ckpool-api.git"
version = "0.1.0"