binance-sdk 68.0.0

This is a lightweight library that works as a connector to the Binance public API.
Documentation

Binance Rust Connector

Build Status Open Issues Crates.io docs.rs Dependency Status License: MIT

Official collection of auto-generated Rust SDK modules for Binance APIs.

Migration Guide

If you're upgrading from the previous connector, refer to our Migration Guide for detailed steps on transitioning to the new modular structure. The legacy connector will still be available for a limited time. You can find the code for the old connector in the legacy branch.

Prerequisites

Before using the connector, ensure you have:

  • Rust (version 1.86.0 or later)
  • cargo (comes with Rust)

Install or update Rust via rustup:

rustup install 1.86.0
rustup default 1.86.0

Available Modules

All connectors are bundled within the single binance-sdk crate. Enable only the modules you need by specifying feature flags. Available features are:

Documentation

Installation

Add binance-sdk to your Cargo.toml, enabling only the features you need. For example, to include Spot and USDS-M Futures modules:

[dependencies]
binance-sdk = { version = "1.0.0", features = ["derivatives_trading_usds_futures", "spot"] }

If you require all available connectors:

[dependencies]
binance-sdk = { version = "1.0.0", features = ["all"] }

TLS Backend Selection

This library supports both OpenSSL (default) and Rustls backends.

Default (OpenSSL): Standard installation uses OpenSSL. This requires OpenSSL development headers to be installed on your system.

[dependencies]
binance-sdk = { version = "1.0.0", features = ["spot"] }

Using Rustls (Pure Rust): To use rustls (useful for cross-compilation or avoiding C-dependencies), you must disable default features and enable rustls-tls.

Note: Private key signing features currently require the openssl-tls feature.

[dependencies]
binance-sdk = { version = "1.0.0", default-features = false, features = ["rustls-tls", "spot"] }

Contributing

This repository contains auto-generated code using OpenAPI Generator. To contribute or request changes:

  1. Open a GitHub issue to discuss new features, bugs, or enhancements.
  2. Fork the repository, make your changes, and submit a pull request.
  3. Respect the code generation workflow — manual edits to generated files will be overwritten.

Please ensure all new code is covered by existing or new tests. We follow Rust API Guidelines for naming and documentation.

Disclaimer

This SDK is provided by Binance on an "as is" and "as available" basis for use at your own risk. Binance makes no representations or warranties of any kind, whether express or implied, as to the operation of the SDK, its accuracy, reliability, completeness, or fitness for any particular purpose.

To the fullest extent permitted by law, Binance shall not be liable for any losses, damages, or expenses of any kind arising from or in connection with your use of, or inability to use, this SDK, including but not limited to any financial losses resulting from errors, bugs, interruptions, or inaccuracies in the SDK.

Your use of this SDK to access the Binance Platform is subject to the Binance API Key Terms and the Binance Terms of Use, which shall prevail in the event of any conflict with this disclaimer. You are solely responsible for any orders or transactions executed through the Binance Platform using this SDK.

This SDK is not intended to constitute investment advice or a recommendation to buy, sell, or hold any digital asset. You should independently evaluate and verify all information before acting.

License

This project is licensed under the MIT License. See the LICENCE file for details.