ledgr 0.1.0

A TUI personal finance app: import bank/pension statements, build a local database, and analyze your finances.
# Common development commands for ledgr.
# Run `just` with no arguments to list them.

default:
    @just --list

build:
    cargo build

run:
    cargo run

test:
    cargo test

fmt:
    cargo fmt

lint:
    cargo clippy --all-targets --all-features -- -D warnings

check: fmt lint test