walutomat-rs is a Rust library for interacting with Walutomat API.

```rust extern crate walutomat;

fn main() { let client = walutomat::v2::Client::new("https://api.walutomat.pl", "key"); let orderbook = client.marketfxbest_offers("EURPLN").unwrap().result.unwrap();

println!("{}", orderbook.pair); for entry in orderbook.asks.iter().zip(orderbook.bids) { println!("{} {}", entry.0.price, entry.1.price); } }

```