forked from sourcefrog/cargo-mutants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
114 lines (103 loc) · 2.81 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[package]
name = "cargo-mutants"
version = "23.6.0"
edition = "2021"
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"
homepage = "https://mutants.rs/"
categories = ["development-tools::testing"]
keywords = ["testing", "mutants", "cargo", "mutation-testing", "coverage"]
rust-version = "1.65"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
camino = "1.0"
cargo_metadata = "0.15"
clap = { version = "4", features = [
"deprecated",
"derive",
"env",
"wrap_help",
] }
clap_complete = "4"
console = "0.15"
ctrlc = { version = "3.2.1", features = ["termination"] }
fastrand = "1.9"
fs2 = "0.4"
globset = "0.4.8"
indoc = "2.0.0"
itertools = "0.10"
mutants = "0.0.3"
nix = "0.26"
path-slash = "0.2"
quote = "1.0"
serde_json = "1"
similar = "2.0"
subprocess = "0.2.8"
tempfile = "3.2"
time = "0.3"
toml = "0.7"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = "0.3"
whoami = "1.2"
[dependencies.regex]
version = "1.5"
[dependencies.cp_r]
version = "0.5.1"
[dependencies.nutmeg]
version = "0.1.2"
# 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 = "2"
features = ["full", "extra-traits", "visit"]
[dev-dependencies]
assert_cmd = "2.0"
insta = "1.12"
lazy_static = "1.4"
predicates = "3"
pretty_assertions = "1"
regex = "1.5"
walkdir = "2.3"
[workspace]
members = ["mutants_attrs"]
# Exclude all testdata, so that they're more isolated from the real tree, and
# so that support for testing workspaces does not try to test the whole
# cargo-mutants tree.
exclude = [
"testdata/tree/already_failing_tests",
"testdata/tree/already_hangs",
"testdata/tree/cdylib",
"testdata/tree/cfg_attr_mutants_skip",
"testdata/tree/cfg_attr_test_skip",
"testdata/tree/dependency",
"testdata/tree/error_value",
"testdata/tree/everything_skipped",
"testdata/tree/factorial",
"testdata/tree/fails_without_feature",
"testdata/tree/hang_avoided_by_attr/",
"testdata/tree/hang_when_mutated",
"testdata/tree/insta",
"testdata/tree/integration_tests",
"testdata/tree/mut_ref",
"testdata/tree/never_type",
"testdata/tree/override_dependency",
"testdata/tree/patch_dependency",
"testdata/tree/relative_dependency",
"testdata/tree/replace_dependency",
"testdata/tree/small_well_tested",
"testdata/tree/strict_warnings",
"testdata/tree/struct_with_no_default",
"testdata/tree/unapply",
"testdata/tree/unsafe",
"testdata/tree/well_tested",
"testdata/tree/with_child_directories",
]