crypto-markets

Fetch trading markets from a cryptocurrency exchange.

Example

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

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