forked from nextest-rs/nextest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
151 lines (143 loc) · 4.56 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
[workspace]
resolver = "2"
members = [
"cargo-nextest",
"fixture-data",
"integration-tests",
"nextest-filtering",
"nextest-metadata",
"nextest-runner",
"workspace-hack",
]
[workspace.package]
rust-version = "1.75"
edition = "2021"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
aho-corasick = "1.1.3"
async-scoped = { version = "0.9.0", features = ["use-tokio"] }
atomicwrites = "0.4.4"
bstr = { version = "1.10.0", default-features = false, features = ["std"] }
bytes = "1.7.2"
camino = "1.1.9"
camino-tempfile = "1.1.1"
cargo_metadata = "0.18.1"
# We specify default-no-update here because if users just run:
#
# cargo build --no-default-features --features default-no-update
#
# then cargo will unify features for cargo-nextest, and it will be built with self-update enabled.
# We could ask distributors to always include `--package cargo-nextest` instead, but they're likely
# to forget. None of our current tests depend on self-update, so just don't include it by default.
cargo-nextest = { path = "cargo-nextest", default-features = false, features = [
"default-no-update",
] }
cfg-if = "1.0.0"
# The default features for color-eyre include tracing support -- for now we don't use that support.
color-eyre = { version = "0.6.3", default-features = false }
# config's "preserve_order" feature is needed for preserving the order of
# setup scripts in .config/nextest.toml.
config = { version = "0.14.0", default-features = false, features = [
"toml",
"preserve_order",
] }
chrono = "0.4.38"
clap = { version = "4.5.19", features = ["derive"] }
console-subscriber = "0.4.0"
dialoguer = "0.11.0"
debug-ignore = "1.0.5"
display-error-chain = "0.2.1"
duct = "0.13.7"
dunce = "1.0.5"
enable-ansi-support = "0.2.1"
# we don't use the default formatter so we don't need default features
env_logger = { version = "0.11.5", default-features = false }
fixture-data = { path = "fixture-data" }
future-queue = "0.3.0"
futures = "0.3.31"
globset = "0.4.15"
guppy = "0.17.8"
home = "0.5.9"
http = "1.1.0"
humantime-serde = "1.1.1"
indexmap = "2.6.0"
indicatif = "0.17.8"
indoc = "2.0.5"
insta = { version = "1.40.0", default-features = false }
is_ci = "1.2.0"
itertools = "0.13.0"
libc = "0.2.159"
log = "0.4.22"
maplit = "1.0.2"
miette = "7.2.0"
mukti-metadata = "0.2.1"
# note: we don't use owo-colors' if_supports_color support for now, instead preferring to use our
# own supports-color + stylesheets everywhere.
newtype-uuid = { version = "1.1.0", features = ["v4"] }
nextest-filtering = { version = "0.12.0", path = "nextest-filtering" }
nextest-metadata = { version = "0.12.1", path = "nextest-metadata" }
nextest-workspace-hack = "0.1.0"
nix = { version = "0.29.0", default-features = false, features = ["signal"] }
once_cell = "1.20.2"
owo-colors = "4.1.0"
pathdiff = { version = "0.2.1", features = ["camino"] }
pin-project-lite = "0.2.14"
pretty_assertions = "1.4.1"
proptest = "1.5.0"
quick-junit = "0.5.0"
rand = "0.8.5"
recursion = "0.5.2"
regex = "1.11.0"
regex-syntax = "0.8.5"
semver = "1.0.23"
self_update = { version = "0.41.0", default-features = false, features = [
"archive-tar",
"compression-flate2",
] }
serde = { version = "1.0.210", features = ["derive"] }
serde_ignored = "0.1.10"
serde_json = "1.0.128"
serde_path_to_error = "0.1.16"
shell-words = "1.1.0"
smallvec = "1.13.2"
smol_str = { version = "0.3.1", features = ["serde"] }
strip-ansi-escapes = "0.2.0"
supports-color = "3.0.1"
supports-unicode = "3.0.0"
swrite = "0.1.0"
tar = "0.4.42"
target-spec = { version = "3.2.2", features = ["custom", "summaries"] }
target-spec-miette = "0.4.0"
test-case = "3.3.1"
test-strategy = "0.4.0"
thiserror = "1.0.64"
tokio = "1.40.0"
toml = "0.8.19"
toml_edit = "0.22.22"
unicode-ident = "1.0.13"
unicode-normalization = "0.1.24"
win32job = "2.0.0"
windows-sys = "0.59.0"
winnow = "0.6.20"
xxhash-rust = "0.8.12"
zstd = { version = "0.13.2", features = ["zstdmt"] }
# make backtrace + color-eyre faster on debug builds
[profile.dev.package.backtrace]
opt-level = 3
# insta and similar are recommended by insta
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3
[profile.release]
# Ensure that symbols and debuginfo aren't stripped. They're useful for debugging issues with
# nextest in the field, and don't bloat up binaries too much
strip = "none"
[patch.crates-io]
nextest-workspace-hack = { path = "workspace-hack" }
# Uncomment for testing.
# [patch.crates-io]
# cargo_metadata = { path = "../cargo_metadata" }
# target-spec = { path = "../guppy/target-spec" }
# target-spec-miette = { path = "../guppy/target-spec-miette" }
# quick-junit = { path = "../quick-junit" }