Client library for the Coinbase Pro API. Requests are asynchronous and return futures.
Basic example to list all currency pairs trading on the exchange:
```rust extern crate coinbase_api; extern crate hyper;
use coinbase_api::*; use hyper::rt::Future;
fn makefuture() -> impl Future
fn main() { hyper::rt::run(make_future()); } ```