23 lines
576 B
TOML
23 lines
576 B
TOML
[package]
|
|
name = "forgejo-todo-checker"
|
|
version = "1.1.0"
|
|
edition = "2021"
|
|
publish = false # NOTE: Not a CLI tool or a library, so don't release to crates.io
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bon = "2.3"
|
|
ignore = "0.4"
|
|
file-format = { version = "0.25", features = ["reader-txt"] }
|
|
kxio = "1.2"
|
|
regex = "1.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.37", features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
assert2 = "0.3"
|
|
pretty_assertions = "1.4"
|
|
rstest = "0.23"
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
|