[package]
edition = "2021"
name = "ccdata-api"
version = "0.1.6"
build = false
exclude = [
".env",
"commands.md",
"notes.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wrapper for CoinDesk REST API endpoints (Fomerly CCData REST API)."
homepage = "https://github.com/rsadykhov/ccdata-api"
documentation = "https://docs.rs/ccdata-api"
readme = "README.md"
categories = [
"api-bindings",
"cryptography::cryptocurrencies",
"finance",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rsadykhov/ccdata-api"
[features]
debug = []
[lib]
name = "ccdata_api"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.dotenv]
version = "=0.15.0"
[dependencies.reqwest]
version = "0.13.2"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
]