# freecurrencyapi-rs: Rust Currency Converter This package is a Rust wrapper for [freecurrencyapi.com](https://freecurrencyapi.com) that aims to make the usage of the API as easy as possible in your project. Freecurrencyapi.com is a free currency API that provides realtime as well as historic 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] freecurrencyapi = "0.1.0" ``` ## Requirements 1. API Key for [freecurrencyapi.com](https://freecurrencyapi.com/) 2. Async runtime like [tokio](https://crates.io/crates/tokio) ## Quickstart ```rust use freecurrencyapi::Freecurrencyapi; use freecurrencyapi::models; async fn request_latest() -> Result