[package]
edition = "2021"
name = "todoctl"
version = "0.3.0"
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENCE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple command line utility application for managing your tasks"
homepage = "https://github.com/MikeTeddyOmondi/todoctl"
readme = "README.md"
keywords = [
"cli",
"task_application",
"todo_application",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/MikeTeddyOmondi/todoctl"
[lib]
name = "todoctl"
path = "src/lib.rs"
[[bin]]
name = "todoctl"
path = "src/bin/todoctl.rs"
[dependencies.clap]
version = "4.5.37"
features = ["derive"]
[dependencies.prettytable-rs]
version = "0.10.0"
[dependencies.rusqlite]
version = "0.35.0"
features = ["bundled"]
[dependencies.tokio]
version = "1.44"
features = ["full"]
[dependencies.uuid]
version = "1.16"
features = [
"v4",
"fast-rng",
"macro-diagnostics",
]