cli_todo_project 0.1.0

simple app on the command line to manage your yodo list
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "cli_todo_project"
version = "0.1.0"
edition = "2024"
authors = ["Kippei Miki <mikikippei@gmail.com>"]
description = "simple app on the command line to manage your yodo list"
license = "MIT"
repository = "https://github.com/ktm06/cli-todo-list"
keywords = ["todo", "task", "cli", "rust"]
readme = "README.md"

[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.0", features = ["derive"] }
uuid = { version = "1.0", features = ["v4"] }