{"id":28962733,"url":"https://github.com/chrissch-dev/budget-tracking-app","last_synced_at":"2025-06-24T03:11:55.622Z","repository":{"id":300521003,"uuid":"1006382258","full_name":"ChrisSch-dev/budget-tracking-app","owner":"ChrisSch-dev","description":"A very simple budget tracking app","archived":false,"fork":false,"pushed_at":"2025-06-22T06:38:12.000Z","size":10415,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-22T07:25:05.878Z","etag":null,"topics":["budget","rust","tracking"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ChrisSch-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-22T06:19:15.000Z","updated_at":"2025-06-22T06:52:26.000Z","dependencies_parsed_at":"2025-06-22T07:25:12.744Z","dependency_job_id":"a5ac91d5-7dcf-49f6-ad56-e88d8b4c6d12","html_url":"https://github.com/ChrisSch-dev/budget-tracking-app","commit_stats":null,"previous_names":["chrissch-dev/budget-tracking-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ChrisSch-dev/budget-tracking-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Fbudget-tracking-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Fbudget-tracking-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Fbudget-tracking-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Fbudget-tracking-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChrisSch-dev","download_url":"https://codeload.github.com/ChrisSch-dev/budget-tracking-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisSch-dev%2Fbudget-tracking-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261595784,"owners_count":23182249,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["budget","rust","tracking"],"created_at":"2025-06-24T03:11:54.849Z","updated_at":"2025-06-24T03:11:55.602Z","avatar_url":"https://github.com/ChrisSch-dev.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fintrack\n\n**Fintrack** is a modern, modular, cross-platform finance and budget tracking desktop application written in Rust.  \nIt features a sleek GUI (built with `eframe`/`egui`), robust file persistence (JSON), CSV import/export, analytics, multi-currency support, monthly budgets, and more.\n\n## Features\n\n- 📊 **Modern Native GUI** (eframe/egui)\n- 💸 **Add, edit, and delete transactions (with per-transaction currency)**\n- 🌎 **Multi-currency support** (per-transaction currency, base currency selection, automatic conversion in analytics and totals)\n- 💱 **Editable exchange rates** (edit in GUI; fetch live rates from API)\n- 🗂 **Categories, search/filter, and recurring expenses**\n- 🏦 **Multi-currency monthly budget limits and progress tracking per category**\n- 📈 **Analytics: Pie charts for category spending (in base or original currency)**\n- 💾 **Save/load profiles (JSON)**\n- 🗃 **CSV import/export (with currency support)**\n- 🌗 **Light/dark theme toggle**\n- 🎯 **Cross-platform:** Windows, macOS, Linux\n\n## Folder Structure\n\n```\nfintrack/\n├── Cargo.toml\n└── src/\n    ├── main.rs           # Entry point\n    ├── app.rs            # App struct and core logic\n    ├── gui.rs            # All GUI rendering (with pie chart, currency toggles, exchange editing)\n    ├── data.rs           # Persistence, currency conversion, exchange rates (with API fetching), CSV import/export\n    ├── analytics.rs      # Filtering, stats, charts (totals in base and other currencies)\n    ├── utils.rs          # Theme and helpers\n    └── types.rs          # Data types, state, Currency enum\n```\n\n## Multi-Currency Support\n\n- Each transaction records its own currency.\n- The application maintains a **base currency** (user-selectable, e.g. USD/EUR/GBP/JPY/CHF).\n- All totals, analytics, and charts are shown in this base currency, using exchange rates (editable in GUI \u0026 fetchable from API).\n- Per-category budgets can be set in any currency; analytics display conversions to base currency.\n- When adding a transaction, select the appropriate currency from a dropdown.\n\n## Editable Exchange Rates\n\n- Click \"Edit Exchange Rates\" in the top bar to open the rate editor.\n- Edit any rate, or click \"Update from API\" for live rates.\n\n## Multi-currency CSV Import/Export\n\n- CSV import/export supports a `currency` column for each transaction.\n\n## Multi-currency Charts\n\n- Pie chart analytics can be toggled between base currency (converted) and original transaction currencies.\n\n## Usage\n\n### Prerequisites\n\n- [Rust](https://rustup.rs/) (stable toolchain)\n- Add the following dependencies to `Cargo.toml` if not present:\n    - eframe\n    - egui_extras\n    - serde, serde_json\n    - chrono\n    - rfd\n    - csv\n    - reqwest = { version = \"0.12\", features = [\"blocking\", \"json\"] }\n\n### Run\n\n```\ncargo run\n```\n\n### Build\n\n```\ncargo build --release\n```\n\n### Binary will be found in `target/release/fintrack`\n\n## License\n\nMIT\n\n---\n\nMade with ❤️ in Rust.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrissch-dev%2Fbudget-tracking-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrissch-dev%2Fbudget-tracking-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrissch-dev%2Fbudget-tracking-app/lists"}