-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
Cargo.toml
73 lines (66 loc) · 2.79 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
[package]
name = "cargo-nextest"
description = "A next-generation test runner for Rust."
version = "0.9.87"
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/nextest-rs/nextest"
documentation = "https://nexte.st"
keywords = ["nextest", "test-runner", "flaky-tests", "junit"]
categories = ["development-tools::cargo-plugins", "development-tools::testing"]
edition = "2021"
rust-version.workspace = true
[dependencies]
camino.workspace = true
cfg-if.workspace = true
clap = { workspace = true, features = ["derive", "env", "unicode", "wrap_help"] }
color-eyre.workspace = true
dialoguer.workspace = true
duct.workspace = true
enable-ansi-support.workspace = true
guppy.workspace = true
itertools.workspace = true
miette = { workspace = true, features = ["fancy"] }
# Instead of using workspace dependencies which have floating versions, we pin exact versions here
# to avoid compatibility issues.
nextest-filtering = { version = "=0.12.0", path = "../nextest-filtering" }
nextest-metadata = { version = "=0.12.1", path = "../nextest-metadata" }
nextest-runner = { version = "=0.70.0", path = "../nextest-runner" }
nextest-workspace-hack.workspace = true
once_cell.workspace = true
owo-colors.workspace = true
pathdiff.workspace = true
quick-junit.workspace = true
semver.workspace = true
serde_json.workspace = true
shell-words.workspace = true
supports-color.workspace = true
supports-unicode.workspace = true
swrite.workspace = true
thiserror.workspace = true
tracing.workspace = true
tracing-subscriber = { workspace = true, default-features = false }
[build-dependencies]
camino.workspace = true
[dev-dependencies]
camino-tempfile.workspace = true
[features]
default = ["default-no-update", "self-update"]
experimental-tokio-console = ["nextest-runner/experimental-tokio-console"]
# Perform self-updates (enabled by default)
self-update = ["nextest-runner/self-update"]
# Default set of features excluding self-update. This is the recommended set of features for
# distributor and custom CI builds.
default-no-update = []
# Metadata for cargo-binstall to get the right artifacts.
# NOTE: The URLs use GitHub Releases rather than get.nexte.st. This is so that cargo-nextest package
# publishing doesn't race with Netlify updates.
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/cargo-nextest-{ version }/{ name }-{ version }-{ target }.tar.gz"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
# Mac x86_64 and aarch64 use the same universal binary.
[package.metadata.binstall.overrides.x86_64-apple-darwin]
pkg-url = "{ repo }/releases/download/cargo-nextest-{ version }/{ name }-{ version }-universal-apple-darwin.tar.gz"
[package.metadata.binstall.overrides.aarch64-apple-darwin]
pkg-url = "{ repo }/releases/download/cargo-nextest-{ version }/{ name }-{ version }-universal-apple-darwin.tar.gz"