todoctl 0.3.0

Simple command line utility application for managing your tasks
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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",
]