Squashed from work: - finance: a personal ledger, budgets and reports on the DataGrid - zero-warning sweep, round two — the first full-workspace pass
20 lines
605 B
TOML
20 lines
605 B
TOML
# Personal finance: a ledger, budgets and reports over a SQLite file, with
|
|
# bank-CSV import. The database is the file format; everything the screens
|
|
# read is an in-memory cache rebuilt from it.
|
|
|
|
[package]
|
|
name = "makepad-app-finance"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Personal finance: ledger, budgets, reports and CSV import"
|
|
license = "MIT OR Apache-2.0"
|
|
default-run = "finance"
|
|
|
|
[[bin]]
|
|
name = "finance"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
makepad-widgets = { path = "../../widgets" }
|
|
mp-theme = { path = "../../libs/mp_theme" }
|
|
makepad-sqlite = { path = "../../libs/sqlite_query" }
|