my_task 1.3.0

A simple CLI task manager powered by SQLite
[package]
name = "my_task"
version = "1.3.0"
edition = "2021"
authors = ["tominaga-h"]
description = "A simple CLI task manager powered by SQLite"
readme = "README.md"
license = "MIT"
keywords = ["cli", "task", "todo", "productivity", "sqlite"]
categories = ["command-line-utilities"]
repository = "https://github.com/mad-tmng/my-task"
rust-version = "1.93"

[[bin]]
name = "my-task"
path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
rusqlite = { version = "0.31", features = ["bundled"] }
chrono = "0.4"
comfy-table = { version = "7", features = ["custom_styling"] }
rand = "0.9"
dirs = "6"
terminal_size = "0.4"
tempfile = "3"

[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
chrono = "0.4"
rusqlite = { version = "0.31", features = ["bundled"] }