[package]
edition = "2021"
name = "readwhitepaper"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client for ReadWhitepaper — blockchain whitepaper database with 30 whitepapers, 163 glossary terms, and 15-language translations"
homepage = "https://readwhitepaper.com"
documentation = "https://docs.rs/readwhitepaper"
readme = "README.md"
keywords = [
"blockchain",
"whitepaper",
"cryptocurrency",
"bitcoin",
"ethereum",
]
categories = [
"api-bindings",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/dobestan/readwhitepaper-rs"
[lib]
name = "readwhitepaper"
path = "src/lib.rs"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]