[package] name = "is_affected" version = "0.5.0" description = "A utility for checking and listing the affected resources across a range of commits, useful when working with monorepos." authors = ["C "] edition = "2021" license = "AGPL-3.0" repository = "https://github.com/DeveloperC286/is_affected/" readme = "README.md" keywords = ["monorepo", "commits", "affected", "repository", "git"] categories = ["command-line-utilities", "development-tools", "config", "parser-implementations", "text-processing"] [dependencies] # For logging. log = "0.4.20" pretty_env_logger = "0.5.0" # For CLI parsing. clap = { version = "4.4.6", features = ["derive"] } # For reading Git commits. git2 = { version = "0.19.0", default-features = false, features=[] } # For checking affected paths. regex = "1.9.6" # For error handling. anyhow = "1.0.89" [dev-dependencies] # For parameterized testing. rstest = "0.23.0"