[package]
edition = "2021"
rust-version = "1.76"
name = "cryptohopper"
version = "0.1.0-alpha.2"
authors = ["Cryptohopper <info@cryptohopper.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Rust SDK for the Cryptohopper API. Async, typed errors, stdlib-on-top-of-reqwest transport, full coverage of all 18 public API domains."
homepage = "https://www.cryptohopper.com"
documentation = "https://docs.rs/cryptohopper"
readme = "README.md"
keywords = [
"cryptohopper",
"trading",
"crypto",
"api",
"sdk",
]
categories = [
"api-bindings",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/cryptohopper/cryptohopper-rust-sdk"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "cryptohopper"
path = "src/lib.rs"
[[test]]
name = "client_tests"
path = "tests/client_tests.rs"
[[test]]
name = "resources_tests"
path = "tests/resources_tests.rs"
[dependencies.httpdate]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"rustls",
"webpki-roots",
"json",
"http2",
"query",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["time"]
default-features = false
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]
[dev-dependencies.wiremock]
version = "0.6"