diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-10-05 21:20:59 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-10-05 21:20:59 +0300 |
commit | 408b0ac993496b108ec1e479151d549e9535051a (patch) | |
tree | 6f19aa190a7f5707cc037f3f9590a89187582254 /Cargo.toml | |
download | finbudg-408b0ac993496b108ec1e479151d549e9535051a.tar.gz finbudg-408b0ac993496b108ec1e479151d549e9535051a.zip |
initial commitv0.1.0
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
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 <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 |