my_task 1.3.0

A simple CLI task manager powered by SQLite
# 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"
rust-version = "1.93"
name = "my_task"
version = "1.3.0"
authors = ["tominaga-h"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple CLI task manager powered by SQLite"
readme = "README.md"
keywords = [
    "cli",
    "task",
    "todo",
    "productivity",
    "sqlite",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/mad-tmng/my-task"

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

[[test]]
name = "add_test"
path = "tests/add_test.rs"

[[test]]
name = "close_test"
path = "tests/close_test.rs"

[[test]]
name = "done_test"
path = "tests/done_test.rs"

[[test]]
name = "edit_test"
path = "tests/edit_test.rs"

[[test]]
name = "list_test"
path = "tests/list_test.rs"

[[test]]
name = "notify_test"
path = "tests/notify_test.rs"

[[test]]
name = "search_test"
path = "tests/search_test.rs"

[[test]]
name = "show_test"
path = "tests/show_test.rs"

[dependencies.chrono]
version = "0.4"

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

[dependencies.comfy-table]
version = "7"
features = ["custom_styling"]

[dependencies.dirs]
version = "6"

[dependencies.rand]
version = "0.9"

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

[dependencies.tempfile]
version = "3"

[dependencies.terminal_size]
version = "0.4"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.chrono]
version = "0.4"

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

[dev-dependencies.tempfile]
version = "3"