Paul Campbell
21504462c8
Now that there is a viable CLI way to run the program, let's make it available to be installed easily.
29 lines
825 B
TOML
29 lines
825 B
TOML
[package]
|
|
name = "forgejo-todo-checker"
|
|
version = "1.2.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)'] }
|