Currency exchange app written in rust
This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Mateusz Słodkowicz 44b94ef042
Update main.yml
2024-03-16 00:13:48 +01:00
.github/workflows Update main.yml 2024-03-16 00:13:48 +01:00
src fix typo 2024-03-15 12:45:28 +01:00
.dockerignore Add Dockerfile 2024-03-15 15:49:23 +01:00
.gitignore Initial commit 2024-03-14 19:41:40 +01:00
Cargo.lock Initial commit 2024-03-14 19:41:40 +01:00
Cargo.toml Initial commit 2024-03-14 19:41:40 +01:00
Dockerfile Add Dockerfile 2024-03-15 15:49:23 +01:00
README.md Update README.md 2024-03-15 15:53:03 +01:00
rustfmt.toml Initial commit 2024-03-14 19:41:40 +01:00

README.md

Currency Exchange

Currency exchange app using ExchangeRate-API.
To use, need ExchangeRate-API Key which is obtainable here

Usage

Before using get your API-KEY and set it up with command or by using interactive mode

currency-exchange --set-api-key <API_KEY>
# or
currency-exchange --interactive

More information on usage:

Usage: currency-exchange [OPTIONS] [Currency input] [Currency target] [Amount]

Arguments:
  [Currency input]   Currency code to exchange from
  [Currency target]  Currency code to exchange to
  [Amount]           Currency amount to exchange

Options:
  -k, --set-api-key <API_KEY>  Set api key
  -r, --recreate-cache         Recreate cache
  -i, --interactive            Interactive mode
  -l, --list                   List currencies
  -L, --list-rates <currency>  List exchange rate for currency
  -h, --help                   Print help

Build

Needs rust and cargo, build tested on rust v1.76.0
To build run command

cargo build -r

Docker

To use with docker Build image

docker build -t currency-exchange .

To run use:

docker run --rm -v /tmp:/tmp:rw currency-exchange <ARGUMENTS>