cargo-features = ["codegen-backend"]
[dependencies.async-trait]
version = "^0.1.89"
[dependencies.cfg-if]
version = "^1.0.3"
[dependencies.derive-new]
version = "^0.7.0"
[dependencies.derive_more]
features = ["deref", "deref_mut"]
version = "^2.0.1"
[dependencies.enum_dispatch]
version = "0.3.13"
[dependencies.eyre]
version = "^0.6.12"
[dependencies.jiff]
version = "^0.2.15"
[dependencies.reqwest]
optional = true
version = "^0.12.24"
[dependencies.secrecy]
version = "^0.10.3"
[dependencies.serde]
features = ["derive"]
version = "^1.0.228"
[dependencies.serde_json]
version = "^1.0.145"
[dependencies.serde_with]
version = "^3.15.0"
[dependencies.thiserror]
version = "^2.0.17"
[dependencies.tokio]
features = ["sync", "macros", "io-util", "rt", "rt-multi-thread", "time"]
version = "^1.47.1"
[dependencies.tracing]
version = "^0.1.41"
[dependencies.v_exchanges_adapters]
optional = true
version = "^0.12.3"
[dependencies.v_utils]
version = "^2.7.2"
[dev-dependencies.color-eyre]
version = "^0.6.5"
[dev-dependencies.insta]
version = "1.43.2"
[features]
binance = ["v_exchanges_adapters/binance"]
bitflyer = ["v_exchanges_adapters/bitflyer"]
bybit = ["v_exchanges_adapters/bybit"]
coincheck = ["v_exchanges_adapters/coincheck"]
data = ["dep:reqwest"]
default = ["major", "data"]
full = ["major", "data", "bitflyer", "coincheck"]
major = ["binance", "bybit", "mexc"]
mexc = ["v_exchanges_adapters/mexc"]
[lib]
name = "v_exchanges"
path = "src/lib.rs"
[package]
authors = ["negi-grass", "valeratrades"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings", "asynchronous"]
description = "Implementations of HTTP/HTTPS/WebSocket API methods for some crypto exchanges, using [crypto-botters](<https://github.com/negi-grass/crypto-botters>) framework"
documentation = "https://docs.rs/v_exchanges"
edition = "2024"
homepage = "https://github.com/valeratrades/v_exchanges"
keywords = ["client", "websocket", "asynchronous"]
license = "MIT"
name = "v_exchanges"
readme = "README.md"
repository = "https://github.com/valeratrades/v_exchanges/tree/master/v_exchanges"
version = "0.12.3"
[package.metadata.cargo-machete]
ignored = ["derive-new", "color-eyre", "serde", "tokio", "v_utils"]
[package.metadata.docs.rs]
all-features = true
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples", "--edition=2024"]
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]