to_do_cli 0.1.2

Feature-rich command-line todo app with SQLite storage
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 = "2024"
name = "to_do_cli"
version = "0.1.2"
build = false
exclude = [
    "todo.db",
    ".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "to_do_cli"
description = "Feature-rich command-line todo app with SQLite storage"
homepage = "https://github.com/Dysfunctional-Human/ToDo-List"
documentation = "https://docs.rs/to_do_cli"
readme = "README.md"
keywords = [
    "todo",
    "cli",
    "task-manager",
    "sqlite",
]
categories = ["command-line-utilities"]
license = "LGPL-2.1"
repository = "https://github.com/Dysfunctional-Human/ToDo-List"

[lib]
name = "to_do_cli"
path = "src/lib.rs"

[[bin]]
name = "seed"
path = "src/bin/seed.rs"

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

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.rusqlite]
version = "0.30"
features = ["bundled"]