[package]
name = "diurn-cli"
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
description = "Command-line tool for ISO 10383 Market Identifier Codes and Diurn market calendars"
repository = "https://github.com/diurn-io/diurn-cli-rs"
homepage = "https://diurn.io"
readme = "README.md"
keywords = ["mic", "iso10383", "exchange", "finance", "cli"]
categories = ["command-line-utilities", "finance"]
exclude = ["tests/**", ".github/**"]
[[bin]]
name = "diurn"
path = "src/main.rs"
[dependencies]
diurn-mic = "0.1.0"
anyhow = "1.0"
clap = { version = "4.6", features = ["derive", "wrap_help"] }
csv = "1.4"
jiff = { version = "0.2", default-features = false, features = ["std", "alloc", "serde", "tz-system"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ureq = "3.4"
[dev-dependencies]
tempfile = "3.27"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = { level = "warn", priority = -1 }