[package]
edition = "2021"
name = "chia-query"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Query the Chia blockchain via decentralized peers with coinset.org fallback"
readme = "README.md"
keywords = [
"chia",
"blockchain",
"coinset",
"peer",
"query",
]
categories = [
"api-bindings",
"cryptography::cryptocurrencies",
]
license = "MIT"
repository = "https://github.com/DIG-Network/chia-query"
[lib]
name = "chia_query"
path = "src/lib.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[dependencies.chia]
version = "0.26"
[dependencies.chia-wallet-sdk]
version = "0.30"
features = ["native-tls"]
[dependencies.clvmr]
version = "0.14"
[dependencies.futures-util]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.log]
version = "0.4"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.24"
[target.'cfg(target_os = "linux")'.dependencies.openssl]
version = "0.10"
features = ["vendored"]
[target.'cfg(target_os = "linux")'.dependencies.openssl-sys]
version = "0.9"
features = ["vendored"]