[package]
name = "mudra-cli"
version = "0.1.0"
edition = "2024"
authors = ["Ashish Bagdane <ashishbagdaneofficial@gmail.com>"]
description = "A robust, high-performance currency converter with caching and CLI interface"
readme = "README.md"
homepage = "https://github.com/AshishBagdane/mudra"
repository = "https://github.com/AshishBagdane/mudra"
license = "MIT"
keywords = ["currency", "exchange-rates", "cli", "converter", "finance"]
categories = ["command-line-utilities", "api-bindings"]
exclude = ["tests/*", ".github/*", "*.log", "target/*"]
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
clap = { version = "4.0", features = ["derive"] }
colored = "2.0"
indicatif = "0.17"
chrono = { version = "0.4", features = ["serde"] }
moka = { version = "0.12", features = ["future"] }
dashmap = "5.5"
url = "2.4"
[dev-dependencies]
wiremock = "0.5"
tokio-test = "0.4"
proptest = "1.0"
assert_matches = "1.5"
tempfile = "3.0"
[[bin]]
name = "mudra"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
debug = true
[workspace]
members = ["."]