nolo 0.1.1

A CLI tool for discovering and analyzing `TODO` comments across codebases.
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 = "nolo"
version = "0.1.1"
authors = ["Alexander Kenji Berthold"]
build = false
include = [
    "src/**/*",
    "tests/*",
    "LICENSE",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for discovering and analyzing `TODO` comments across codebases."
homepage = "https://github.com/a-kenji/nolo"
readme = "README.md"
keywords = [
    "todo",
    "comments",
    "code-analysis",
    "cli",
    "developer-tools",
]
categories = [
    "command-line-utilities",
    "development-tools",
    "development-tools::debugging",
]
license = "MIT"
repository = "https://github.com/a-kenji/nolo"

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = ["serde"]

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

[dependencies.commentator]
version = "0.2.3"

[dependencies.dirs]
version = "6.0"

[dependencies.ignore]
version = "0.4.23"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.tabled]
version = "0.20.0"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1.41"

[dependencies.tracing-subscriber]
version = "0.3.19"
features = ["env-filter"]

[dev-dependencies.insta]
version = "1.0"
features = ["filters"]

[profile.dev]
lto = "thin"
debug = 0
incremental = true
strip = true

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true