[package]
edition = "2024"
name = "binance-spot"
version = "0.2.3"
authors = ["Denis Gruia <denis.gruiax@icloud.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Binance Spot API client implementation with REST support for spot trading."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/denisgruiax/binance-rs.git"
resolver = "1"
[lib]
name = "binance_spot"
path = "src/lib.rs"
[[test]]
name = "account"
path = "tests/account.rs"
[[test]]
name = "general"
path = "tests/general.rs"
[[test]]
name = "market"
path = "tests/market.rs"
[[test]]
name = "trade"
path = "tests/trade.rs"
[dependencies.binance-common]
version = "0.2.2"
[dependencies.binance-core]
version = "0.2.2"
[dependencies.dotenv]
version = "0.15.0"
[dependencies.once_cell]
version = "1.21.3"
[dependencies.reqwest]
version = "0.12.15"
features = [
"blocking",
"json",
]
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.tokio]
version = "1.44.2"
features = [
"macros",
"rt-multi-thread",
]