A restful client for all cryptocurrency exchanges.
```rust use cryptorestclient::{BinanceClient};
fn main() { let config: HashMap<&str, &str> = vec![ ("apikey", "your-API-key"), ("apisecret", "your-API-secret"), ].into_iter().collect();
let rest_client = BinanceClient::new(config);
// buy
let transaction_id = rest_client.place_order("Spot", "btcusdt", 27999.9, 5.0, false);
println!("{}", transactionId);
} ```