From 408b0ac993496b108ec1e479151d549e9535051a Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Mon, 5 Oct 2020 21:20:59 +0300 Subject: initial commit --- Cargo.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..776e878 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "finbudg" +version = "0.1.0" +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 "] +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 -- cgit v1.2.3