[package]
edition = "2021"
rust-version = "1.94"
name = "cargo-affected"
version = "0.3.0"
authors = ["Maximilian Roos <m@maxroos.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run only the tests affected by git changes, using LLVM coverage."
readme = "README.md"
keywords = [
"test",
"coverage",
"cargo-subcommand",
"incremental",
"nextest",
]
categories = [
"development-tools::testing",
"development-tools::cargo-plugins",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/max-sixty/cargo-affected"
[[bin]]
name = "cargo-affected"
path = "src/main.rs"
[[test]]
name = "functional"
path = "tests/functional/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.camino]
version = "1"
features = ["serde1"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.globset]
version = "0.4"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.toml_edit]
version = "0.25"
[dev-dependencies.tempfile]
version = "3"