aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: caecf3a2f240979b0cbcf45e4233b52d7b099c44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "finbudg"
version = "0.1.2"
edition = "2018"
description = "Quick cli tool to calculate your expenses and balance for a set period of time."
license = "MIT"
readme = "README.md"
authors = ["Yaroslav de la Peña Smirnov <contact@yaroslavps.com>"]
homepage = "https://www.yaroslavps.com/"
repository = "https://github.com/Yaroslav-95/finbudg"

[dependencies]
clap = "2.33"
colored = "2.0"
chrono = "0.4"
budget = { path = "budget" }

[workspace]
members = [
  "budget"
]

[profile.release]
lto = true