forgejo-todo-checker/Cargo.toml
ForgeJo Action. See: https://git.kemitix.net/kemitix/rust b14f523b8f
All checks were successful
Test / build (map[name:nightly]) (pull_request) Successful in 5m22s
Test / build (map[name:stable]) (pull_request) Successful in 6m6s
Release Please / Release-plz (push) Successful in 4m6s
chore: release v1.3.0
Signed-off-by: ForgeJo Action. See: https://git.kemitix.net/kemitix/rust <action@git.kemitix.net>
2025-01-05 10:35:23 +00:00

29 lines
825 B
TOML

[package]
name = "forgejo-todo-checker"
version = "1.3.0"
edition = "2021"
authors = ["Paul Campbell <pcampbell@kemitix.net>"]
description = "Checks your source files for TODO and FIXME comments, where they don't have an open issue number."
license = "MIT"
repository = "https://git.kemitix.net/kemitix/trello-to-deck"
[dependencies]
bon = "3.0"
clap = {version = "4.5", features = ["derive"]}
color-eyre = "0.6"
file-format = { version = "0.26", features = ["reader-txt"] }
ignore = "0.4"
kxio = "5.0"
regex = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.37", features = ["full"] }
[dev-dependencies]
assert2 = "0.3"
mutants = "0.0"
pretty_assertions = "1.4"
rstest = "0.24"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }