crypto-markets

Get all trading pairs of a cryptocurrency exchange.

Example

```rust use cryptomarkets::{fetchmarkets, MarketType};

fn main() { let markets = fetchmarkets("Binance", MarketType::Spot).unwrap(); println!("{}", serdejson::tostringpretty(&markets).unwrap()) } ```