# fxapi-rs: Rust Currency Converter This package is a Rust wrapper for [fxapi.com](https://fxapi.com) that aims to make the usage of the API as easy as possible in your project. Fxapi.com is a exchange rates API that provides historic and realtime foreign exchange data. ## Installation This crate is under development. Especially the response parsing needs some more testing. However, if you still want to use it, you can install it by adding this to your `Cargo.toml`: ```toml [dependencies] fxapi = "0.1.0" ``` ## Requirements 1. API Key for [fxapi.com](https://fxapi.com/) 2. Async runtime like [tokio](https://crates.io/crates/tokio) ## Quickstart ```rust use fxapi::Fxapi; use fxapi::models; async fn request_latest() -> Result