binance-sdk 44.0.1

This is a lightweight library that works as a connector to the Binance public API.
use anyhow::{Context, Result};
use std::env;
use tracing::info;

use binance_sdk::config::ConfigurationRestApi;
use binance_sdk::logger;
use binance_sdk::spot::{SpotRestApi, rest_api::ExecutionRulesParams};

#[tokio::main]
async fn main() -> Result<()> {
    // Initialise logging
    logger::init();

    // Load credentials from env
    let api_key = env::var("API_KEY").context("API_KEY must be set")?;
    let api_secret = env::var("API_SECRET").context("API_SECRET must be set")?;

    // Build REST config
    let rest_conf = ConfigurationRestApi::builder()
        .api_key(api_key)
        .api_secret(api_secret)
        .build()?;

    // Create the Spot REST API client
    let rest_client = SpotRestApi::production(rest_conf);

    // Setup the API parameters
    let params = ExecutionRulesParams::default();

    // Make the API call
    let response = rest_client
        .execution_rules(params)
        .await
        .context("execution_rules request failed")?;

    info!(?response.rate_limits, "execution_rules rate limits");
    let data = response.data().await?;
    info!(?data, "execution_rules data");

    Ok(())
}