forgejo-todo-checker/Cargo.toml

30 lines
825 B
TOML
Raw Normal View History

[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]
2024-11-13 12:15:36 +00:00
bon = "3.0"
2025-01-04 20:46:01 +00:00
clap = {version = "4.5", features = ["derive"]}
2024-12-03 07:41:51 +00:00
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"] }
2025-01-04 20:46:01 +00:00
serde_json = "1.0"
tokio = { version = "1.37", features = ["full"] }
2024-09-19 19:32:15 +01:00
[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)'] }