# Digital Logbook---A command line application for tracking your
# computer usage times.
# Copyright (C) 2023 Max Günther
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
[package]
name = "digital-logbook"
version = "0.1.4"
edition = "2021"
authors = ["Max Günther "]
description = "A command line application for tracking your computer usage times."
repository = "https://codeberg.org/guemax/digital-logbook"
license = "GPL-3.0-or-later"
readme = "CARGO_README.md"
keywords = ["computer-usage-times", "time-tracker"]
categories = ["command-line-utilities"]
[[bin]]
name = "logbook"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.8", features = ["derive"] }
chrono = { version =" 0.4.31", features = ["serde"] }
colored = "2.1.0"
csv = "1.3.0"
polars = { version = "0.35.4", features = ["lazy", "temporal"] }
serde = { version = "1.0.192", features = ["serde_derive"] }
tabled = "0.15.0"
thiserror = "1.0.50"
[dev-dependencies]
parameterized = "1.1.0"
tempfile = "3.8.1"