[package]
edition = "2024"
name = "todo-tree"
version = "1.0.0"
authors = ["Alexandre Trotel"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "todo-tree"
description = "A CLI tool to find and display TODO-style comments in your codebase"
homepage = "https://github.com/alexandretrotel/todo-tree"
documentation = "https://docs.rs/todo-tree"
readme = "README.md"
keywords = [
"todo",
"cli",
"developer-tools",
"productivity",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/alexandretrotel/todo-tree"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/todo-tree-{ target }.tar.gz"
pkg-fmt = "tgz"
bin-dir = "todo-tree-{ target }/{ bin }{ binary-ext }"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/todo-tree-{ target }.zip"
pkg-fmt = "zip"
[lib]
name = "todo_tree"
path = "src/lib.rs"
[[bin]]
name = "todo-tree"
path = "src/bin/todo-tree/main.rs"
[[bin]]
name = "tt"
path = "src/bin/tt/main.rs"
[dependencies.clap]
version = "4.6"
features = [
"derive",
"env",
]
[dependencies.color-eyre]
version = "0.6"
[dependencies.colored]
version = "3.1"
[dependencies.dirs]
version = "6.0"
[dependencies.ignore]
version = "0.4"
[dependencies.memchr]
version = "2.8"
[dependencies.notify-debouncer-mini]
version = "0.7"
[dependencies.regex]
version = "1.13"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.supports-hyperlinks]
version = "3.2"
[dependencies.toml]
version = "1"
[profile.release]
lto = true
codegen-units = 1
strip = true