pense 0.9.0

pense is a cli based tool to track expenses.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(all(feature = "full", feature = "lite"))]
compile_error!("Features `full` and `lite` are mutually exclusive. Please enable only one.");

use clap::Parser;
use std::error::Error;

use pense::cli;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error + 'static>> {
    let args = cli::ExpenseTrackerArgs::parse();

    cli::parse_sub_commands(args).await?;

    Ok(())
}