ecb-rates/Cargo.toml

41 lines
884 B
TOML
Raw 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-04 16:42:55 +01:00
version = "0.1.0"
edition = "2021"
2025-01-08 19:30:23 +01:00
authors = ["Love Billenius <lovebillenius@disroot.org>"]
license-file = "LICENSE"
keywords = [
"ECB",
"European Central Bank",
"Bank",
"Central Bank",
"exchange",
"rates",
"eur",
"sek",
"usd",
"nok",
"gbp",
"pln",
"dkk",
"czk",
"isk",
"chf",
]
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"
serde = { version = "1.0.217", features = ["derive", "rc"] }
serde_json = "1.0.134"
tokio = { version = "1.42.0", features = ["macros"] }