[package]
edition = "2024"
name = "todoapp-cli"
version = "0.2.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Keyboard-free CLI for tda (M3) — JSON output for agents and scripts"
homepage = "https://github.com/davidB/todoapp"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/davidB/todoapp"
[package.metadata.dist]
dist = true
[[bin]]
name = "tda"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.todoapp-app]
version = "0.2.0"
[dependencies.todoapp-core]
version = "0.2.0"
[dependencies.todoapp-tui]
version = "0.2.0"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]
[lints.clippy]
dbg_macro = "warn"
decimal_literal_representation = "warn"
expect_used = "warn"
if_then_some_else_none = "warn"
implicit_hasher = "allow"
indexing_slicing = "allow"
large_include_file = "warn"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
print_stderr = "warn"
print_stdout = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
undocumented_unsafe_blocks = "deny"
unnecessary_safety_doc = "warn"
unwrap_used = "warn"
wildcard_imports = "allow"
[lints.clippy.cargo]
level = "allow"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.rust]
deprecated = "warn"
missing_docs = "allow"
non_snake_case = "allow"
unsafe_code = "deny"
warnings = "deny"