| Crates.io | binance-rust |
| lib.rs | binance-rust |
| version | 0.1.2 |
| created_at | 2024-03-30 15:53:34.116127+00 |
| updated_at | 2024-03-30 16:02:58.105658+00 |
| description | Binance Api with Rust |
| homepage | |
| repository | https://github.com/ryqdev/binance-rust |
| max_upload_size | |
| id | 1191174 |
| size | 37,679 |
e.g.:
use std::fs;
use std::{thread, time};
use binance_rust;
fn main() -> anyhow::Result<()> {
let price = binance_rust::binance_price("BTCUSDT".to_string())?;
println!("{}", price);
Ok(())
}