[package]
edition = "2024"
name = "forex-split"
version = "1.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Split a receipt in one currency into categories for bookkeeping in another currency."
readme = "README.md"
keywords = [
"bookkeeping",
"accounting",
"travel",
"ynab",
"budgeting",
]
categories = [
"command-line-utilities",
"finance",
"mathematics",
]
license = "MIT"
repository = "https://github.com/JonasEngstrom/forex-split"
[lib]
name = "forex_split"
path = "src/lib.rs"
[[bin]]
name = "forex-split"
path = "src/main.rs"
[[test]]
name = "integration_cli"
path = "tests/integration_cli.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]