simple-task-timer 0.2.0

A simple timer for keeping track of your tasks without leaving the terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "simple-task-timer"
version = "0.2.0"
edition = "2021"
authors = ["Felipe Zambrin"]
description = "A simple timer for keeping track of your tasks without leaving the terminal"
license = "GPL-3.0"

[dependencies]
clap = {version = "4.3.19", features = ["cargo"]}
serde = { version = "1.0.180", features = ["derive"] }
serde_json = "1.0.104"
chrono = "0.4.35"

[[bin]]
name = "timer"
path = "src/main.rs"