forked from nextest-rs/nextest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
140 lines (128 loc) · 4.12 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
[package]
name = "nextest-runner"
description = "Core runner logic for cargo nextest."
version = "0.39.0"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nextest-rs/nextest"
documentation = "https://docs.rs/nextest-runner"
edition = "2021"
rust-version = "1.66"
# For an example build script that gates by compiler version, see the history for build.rs in this
# directory.
[dependencies]
atomicwrites = "0.4.1"
aho-corasick = "1.0.1"
async-scoped = { version = "0.7.1", features = ["use-tokio"] }
future-queue = "0.3.0"
bytes = "1.4.0"
camino = { version = "1.1.4", features = ["serde1"] }
config = { version = "0.13.3", default-features = false, features = ["toml"] }
cargo_metadata = "0.15.4"
cfg-if = "1.0.0"
chrono = "0.4.24"
debug-ignore = "1.0.5"
either = "1.8.1"
futures = "0.3.28"
guppy = "0.15.2"
# Used to find the cargo root directory, which is needed in case the user has
# added a config.toml there
home = "0.5.5"
http = "0.2.9"
humantime-serde = "1.1.1"
indent_write = "2.2.0"
indicatif = "0.17.3"
is_ci = "1.1.1"
itertools = "0.10.5"
log = "0.4.17"
rand = "0.8.5"
miette = "5.8.0"
once_cell = "1.17.1"
owo-colors = "3.5.0"
pin-project-lite = "0.2.9"
regex = "1.8.1"
semver = "1.0.17"
serde = { version = "1.0.163", features = ["derive"] }
serde_ignored = "0.1.7"
serde_json = "1.0.96"
serde_path_to_error = "0.1.11"
shell-words = "1.1.0"
smol_str = { version = "0.2.0", features = ["serde"] }
strip-ansi-escapes = "0.1.1"
tar = "0.4.38"
# For cfg expression evaluation for [target.'cfg()'] expressions
target-spec = { version = "1.4.0", features = ["summaries"] }
target-spec-miette = "0.1.0"
tempfile = "3.5.0"
thiserror = "1.0.40"
# For parsing of .cargo/config.toml files
tokio = { version = "1.28.1", features = [
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
toml = "0.7.3"
toml_edit = "0.19.8"
twox-hash = { version = "1.6.3", default-features = false }
zstd = { version = "0.12.3", features = ["zstdmt"] }
###
### Update-related features, optionally enabled
###
mukti-metadata = { version = "0.1.0", optional = true }
# TODO: remove dependency on self_update, build our own thing on top of mukti
self_update = { version = "0.36.0", optional = true, default-features = false, features = [
"archive-tar",
"compression-flate2",
] }
nextest-filtering = { version = "0.4.0", path = "../nextest-filtering" }
nextest-metadata = { version = "0.8.2", path = "../nextest-metadata" }
quick-junit = { version = "0.3.2", path = "../quick-junit" }
uuid = { version = "1.3.2", features = ["v4"] }
nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" }
console-subscriber = { version = "0.1.9", optional = true }
unicode-ident = "1.0.8"
unicode-normalization = "0.1.22"
indexmap = "1.9.3"
smallvec = "1.10.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.144"
nix = { version = "0.26.2", default-features = false, features = ["signal"] }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.48.0", features = [
"Win32_Foundation",
"Win32_Globalization",
"Win32_System_Console",
"Win32_System_JobObjects",
] }
win32job = "1.0.2"
dunce = "1.0.4"
# Use rustls by default, OpenSSL on platforms where rustls isn't available:
# RISC-V: https://github.com/nextest-rs/nextest/issues/820
# (default features for self_update turns on openssl)
[target.'cfg(not(any(target_arch = "riscv32", target_arch = "riscv64")))'.dependencies]
self_update = { version = "0.36.0", optional = true, default-features = false, features = [
"rustls",
] }
[target.'cfg(any(target_arch = "riscv32", target_arch = "riscv64"))'.dependencies]
self_update = { version = "0.36.0", optional = true }
[dev-dependencies]
color-eyre = { version = "0.6.2", default-features = false }
duct = "0.13.6"
indoc = "2.0.1"
maplit = "1.0.2"
pathdiff = { version = "0.2.1", features = ["camino"] }
pretty_assertions = "1.3.0"
proptest = "1.1.0"
proptest-derive = "0.3.0"
test-case = "3.1.0"
[[bin]]
name = "passthrough"
path = "test-helpers/passthrough.rs"
[features]
self-update = ["self_update", "mukti-metadata"]
experimental-tokio-console = ["console-subscriber", "tokio/tracing"]