Compare commits

...

3 Commits

Author SHA1 Message Date
3fce153c1c update for crates.io 2025-01-09 17:29:35 +01:00
416233afde For crates.io 2025-01-09 17:27:48 +01:00
f2f27a25b6 Instructions for dpkg 2025-01-09 17:16:12 +01:00
2 changed files with 11 additions and 13 deletions

View File

@ -7,22 +7,14 @@ authors = ["Love Billenius <lovebillenius@disroot.org>"]
license-file = "LICENSE" license-file = "LICENSE"
keywords = [ keywords = [
"ECB", "ECB",
"European Central Bank",
"Bank", "Bank",
"Central Bank", "Central",
"exchange", "exchange",
"rates", "rates",
"eur",
"sek",
"usd",
"nok",
"gbp",
"pln",
"dkk",
"czk",
"isk",
"chf",
] ]
repository = "https://github.com/lov3b/ecb-rates"
rust-version = "1.83"
categories = ["finance", "command-line-utilities"]
[[bin]] [[bin]]
name = "ecb-rates" name = "ecb-rates"

View File

@ -19,12 +19,18 @@
## Install ## Install
### Binary
If you're on Debian Linux, then just go over to the releases, and install the latest *.deb* package with `dpkg`
### Source
First, make sure that you have the rust toolchain installed. If not, then go to [rustup](https://rustup.rs) to install it. First, make sure that you have the rust toolchain installed. If not, then go to [rustup](https://rustup.rs) to install it.
Now, run the following cargo command: Now, run the following cargo command:
```sh ```sh
cargo install --git https://github.com/lov3b/ecb-rates.git cargo install ecb-rates
``` ```
Congratulations! Now the cli binary `ecb-rates` will be in your cargo bin folder. Congratulations! Now the cli binary `ecb-rates` will be in your cargo bin folder.