[package]
edition = "2024"
name = "mint-cli"
version = "1.2.2"
build = false
exclude = [
"flake.*",
".envrc",
".cursor/**",
".github/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for building hex files from excel data and a layout definition."
readme = "README.md"
keywords = [
"flash",
"hex",
"layout",
"excel",
"data",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/tomrford/mint"
[lib]
name = "mint_cli"
path = "src/lib.rs"
[[bin]]
name = "mint"
path = "src/main.rs"
[[test]]
name = "bitmap"
path = "tests/bitmap.rs"
[[test]]
name = "block_expansion"
path = "tests/block_expansion.rs"
[[test]]
name = "cli_flags"
path = "tests/cli_flags.rs"
[[test]]
name = "crc_variations"
path = "tests/crc_variations.rs"
[[test]]
name = "export_json"
path = "tests/export_json.rs"
[[test]]
name = "http"
path = "tests/http.rs"
[[test]]
name = "json"
path = "tests/json.rs"
[[test]]
name = "mixed_features"
path = "tests/mixed_features.rs"
[[test]]
name = "no_excel"
path = "tests/no_excel.rs"
[[test]]
name = "postgres"
path = "tests/postgres.rs"
[[test]]
name = "size_enforcement"
path = "tests/size_enforcement.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "statistics"
path = "tests/statistics.rs"
[[test]]
name = "strict_conversions"
path = "tests/strict_conversions.rs"
[[test]]
name = "variant_stack"
path = "tests/variant_stack.rs"
[[test]]
name = "word_addressing"
path = "tests/word_addressing.rs"
[dependencies.bin_file]
version = "0.1.4"
[dependencies.calamine]
version = "0.29.0"
[dependencies.clap]
version = "4.5.42"
features = ["derive"]
[dependencies.comfy-table]
version = "7.1"
[dependencies.indexmap]
version = "2.10.0"
features = ["serde"]
[dependencies.percent-encoding]
version = "2.3.2"
[dependencies.postgres]
version = "0.19.12"
[dependencies.rayon]
version = "1.11.0"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.142"
features = ["preserve_order"]
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.toml]
version = "0.9.4"
features = ["preserve_order"]
[dependencies.ureq]
version = "3.1.4"