tododo 0.1.2

A minimal terminal todo manager built with Rust and Ratatui
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 = "tododo"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal terminal todo manager built with Rust and Ratatui"
readme = "README.md"
keywords = [
    "todo",
    "tui",
    "terminal",
    "cli",
    "sqlite",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/Shigure42/todo"

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

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

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

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

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
version = "0.4"

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

[dependencies.crossterm]
version = "0.29"

[dependencies.ratatui]
version = "0.30"

[dependencies.ratatui-textarea]
version = "0.8"

[dependencies.sea-orm]
version = "1.1"
features = [
    "sqlx-sqlite",
    "runtime-tokio-native-tls",
]

[dependencies.sea-orm-migration]
version = "1.1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "sync",
]

[dependencies.uuid]
version = "1"
features = ["v4"]