apps/files, apps/sheets, libs/wm_api, libs/wm_theme and the renamed env vars and script namespaces meet the demo seams; added demo files move to the renamed paths; the files app keeps its own makepad_home so demo builds without the chat feature do not link the AI hub. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01WV6BzHQiJEvvK9EPc1d4ks
26 lines
706 B
TOML
26 lines
706 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"
|
|
|
|
[features]
|
|
default = []
|
|
demo = []
|
|
|
|
[dependencies]
|
|
makepad-widgets = { path = "../../widgets" }
|
|
makepad-wm-theme = { path = "../../libs/wm_theme" }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
makepad-sqlite = { path = "../../libs/sqlite_query" }
|