ecb-rates/Cargo.toml

33 lines
857 B
TOML
Raw Permalink Normal View History

2025-01-04 16:42:55 +01:00
[package]
2025-01-04 18:21:24 +01:00
name = "ecb-rates"
2025-01-08 19:30:23 +01:00
description = "Query exchange rates from the European Central Bank (ECB)"
2025-01-09 16:31:33 +01:00
version = "1.0.0"
2025-01-04 16:42:55 +01:00
edition = "2021"
2025-01-08 19:30:23 +01:00
authors = ["Love Billenius <lovebillenius@disroot.org>"]
license-file = "LICENSE"
keywords = [
"ECB",
"Bank",
2025-01-09 17:25:39 +01:00
"Central",
2025-01-08 19:30:23 +01:00
"exchange",
"rates",
]
2025-01-09 17:25:39 +01:00
repository = "https://github.com/lov3b/ecb-rates"
rust-version = "1.83"
categories = ["finance", "command-line-utilities"]
2025-01-04 16:42:55 +01:00
2025-01-07 15:59:55 +01:00
[[bin]]
name = "ecb-rates"
path = "src/main.rs"
2025-01-04 16:42:55 +01:00
[dependencies]
2025-01-04 18:18:38 +01:00
anyhow = "1.0.95"
2025-01-07 15:52:01 +01:00
chrono = { version = "0.4.39", features = ["serde"] }
2025-01-04 16:42:55 +01:00
clap = { version = "4.5.23", features = ["derive"] }
2025-01-08 13:53:26 +01:00
colored = "3.0.0"
2025-01-04 16:42:55 +01:00
quick-xml = { version = "0.37.2", features = ["async-tokio", "tokio"] }
reqwest = "0.12.12"
2025-01-08 19:32:06 +01:00
serde = { version = "1.0.217", features = ["derive"] }
2025-01-04 16:42:55 +01:00
serde_json = "1.0.134"
tokio = { version = "1.42.0", features = ["macros"] }