[package]
edition = "2024"
rust-version = "1.87.0"
name = "binance-rs-plus"
version = "0.1.2"
authors = ["codegpt<codegpt@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust Library for the Binance API"
documentation = "https://docs.rs/crate/binance-rs-plus/"
readme = "README.md"
keywords = [
"cryptocurrency",
"trading",
"binance",
]
categories = [
"api-bindings",
"cryptography::cryptocurrencies",
]
license = "MIT"
repository = "https://github.com/Praying/binance-rs-plus"
[badges.travis-ci]
repository = "Praying/binance-rs-plus"
[lib]
name = "binance_rs_plus"
path = "src/lib.rs"
[[example]]
name = "binance_endpoints"
path = "examples/binance_endpoints.rs"
[[example]]
name = "binance_futures_endpoints"
path = "examples/binance_futures_endpoints.rs"
[[example]]
name = "binance_futures_userstream"
path = "examples/binance_futures_userstream.rs"
[[example]]
name = "binance_futures_websockets"
path = "examples/binance_futures_websockets.rs"
[[example]]
name = "binance_save_all_trades"
path = "examples/binance_save_all_trades.rs"
[[example]]
name = "binance_websockets"
path = "examples/binance_websockets.rs"
[[test]]
name = "account_tests"
path = "tests/account_tests.rs"
[[test]]
name = "futures_account_tests"
path = "tests/futures_account_tests.rs"
[[test]]
name = "futures_general_tests"
path = "tests/futures_general_tests.rs"
[[test]]
name = "futures_market_test"
path = "tests/futures_market_test.rs"
[[test]]
name = "general_tests"
path = "tests/general_tests.rs"
[[test]]
name = "market_tests"
path = "tests/market_tests.rs"
[[test]]
name = "util_tests"
path = "tests/util_tests.rs"
[[bench]]
name = "websocket_benchmark"
path = "benches/websocket_benchmark.rs"
harness = false
[dependencies.anyhow]
version = "1.0.86"
[dependencies.clap]
version = "4.5.39"
[dependencies.futures-util]
version = "0.3.30"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12.1"
[dependencies.reqwest]
version = "0.12.19"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0.197"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.sha2]
version = "0.10.9"
[dependencies.thiserror]
version = "1.0.69"
[dependencies.tokio]
version = "1.45.1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.23.1"
features = ["rustls"]
[dependencies.url]
version = "2.5.0"
[dev-dependencies.criterion]
version = "0.6"
[dev-dependencies.csv]
version = "1.3.0"
[dev-dependencies.env_logger]
version = "0.11.2"
[dev-dependencies.float-cmp]
version = "0.10.0"
[dev-dependencies.mockito]
version = "1.4.0"
[dev-dependencies.serde_json]
version = "1.0"