twodo 0.1.0

This a simple todo list application in terminal
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 = "twodo"
version = "0.1.0"
authors = ["Jobin Nelson"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This a simple todo list application in terminal"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/Jobin-Nelson/twodo"

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

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

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

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

[dependencies.derive_more]
version = "2.0.1"
features = ["from"]

[dependencies.sqlx]
version = "0.8.6"
features = [
    "runtime-tokio",
    "sqlite",
]

[dependencies.tokio]
version = "1.45.1"
features = ["full"]