forgejo-todo-checker/Cargo.toml
Paul Campbell b50f73b7b7
All checks were successful
Test / build (map[name:stable]) (push) Successful in 5m51s
Test / build (map[name:nightly]) (push) Successful in 5m2s
feat: add cli args to help run locally
2025-01-05 09:05:11 +00:00

26 lines
664 B
TOML

[package]
name = "forgejo-todo-checker"
version = "1.2.0"
edition = "2021"
publish = false # NOTE: Not a CLI tool or a library, so don't release to crates.io
[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)'] }