[package]
edition = "2024"
name = "git-conform"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Keep track of your local git repositories"
readme = "README.md"
keywords = [
"git",
"tracker",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
"visualization",
]
license = "MIT"
repository = "https://github.com/ndr3www/git-conform"
[lib]
name = "git_conform"
path = "src/lib.rs"
[[bin]]
name = "git-conform"
path = "src/main.rs"
[[test]]
name = "add"
path = "tests/add.rs"
[[test]]
name = "check"
path = "tests/check.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "remove"
path = "tests/remove.rs"
[[test]]
name = "scan"
path = "tests/scan.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.colored]
version = "3"
[dependencies.home]
version = "0.5.12"
[dependencies.indicatif]
version = "0.18.4"
[dependencies.tokio]
version = "1.52.2"
features = ["full"]
[dependencies.wait-timeout]
version = "0.2.1"
[dependencies.walkdir]
version = "2"
[dev-dependencies.serial_test]
version = "3.4.0"
[lints.clippy]
complexity = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"