cargo-mutants 0.2.4

Find inadequately-tested code that can be removed without any tests failing.
[package]
name = "cargo-mutants"
version = "0.2.4"
edition = "2018"
authors = ["Martin Pool"]
license = "MIT"
description = "Find inadequately-tested code that can be removed without any tests failing."
repository = "https://github.com/sourcefrog/cargo-mutants"
categories = ["development-tools::testing"]
keywords = ["testing", "mutants", "cargo", "mutation-testing", "coverage"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0"
argh = "0.1"
console = "0.15"
ctrlc = "3.2.1"
itertools = "0.10"
nix = "0.23"
path-slash = "0.1.4"
quote = "1.0"
rand = "0.8"
serde_json = "1"
similar = "2.0"
subprocess = "0.2.8"
tempfile = "3.2"
walkdir = "2.3"

[dependencies.cp_r]
version = "0.5.1"

[dependencies.nutmeg]
version = "0.1.1"
#git = "https://github.com/sourcefrog/nutmeg.git"

[dependencies.proc-macro2]
features = ["span-locations"]
version = "1.0.29"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.syn]
version = "1"
features = ["full", "extra-traits", "visit"]

[dev-dependencies]
assert_cmd = "2.0"
insta = "1.12"
lazy_static = "1.4"
predicates = "2"
pretty_assertions = "1"
regex = "1.5"

[workspace]
members = [
    "mutants_attrs",
    "testdata/tree/factorial",
    "testdata/tree/hang_avoided_by_attr/",
    "testdata/tree/hang_when_mutated",
    "testdata/tree/well_tested",
]

# TODO: Re-enable these when the tests are checked by the real integration tests, but
# skipped by `cargo test --workspace`. (It's complicated!)
exclude = ["testdata/tree/already_hangs", "testdata/tree/already_failing_tests"]