-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathCargo.toml
65 lines (60 loc) · 2.62 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
[package]
name = "cargo-nextest"
description = "A next-generation test runner for Rust."
version = "0.9.57"
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 = "1.66"
[dependencies]
camino = "1.1.6"
cfg-if = "1.0.0"
clap = { version = "4.3.19", features = ["derive", "env"] }
# we don't use the tracing support
color-eyre = { version = "0.6.2", default-features = false }
dialoguer = "0.10.4"
duct = "0.13.6"
enable-ansi-support = "0.2.1"
# we don't use the default formatter so we don't need default features
env_logger = { version = "0.10.0", default-features = false }
guppy = "0.17.1"
log = "0.4.19"
itertools = "0.11.0"
miette = { version = "5.10.0", features = ["fancy"] }
nextest-filtering = { version = "=0.5.0", path = "../nextest-filtering" }
nextest-runner = { version = "=0.45.0", path = "../nextest-runner" }
nextest-metadata = { version = "=0.9.1", path = "../nextest-metadata" }
once_cell = "1.18.0"
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
pathdiff = { version = "0.2.1", features = ["camino"] }
semver = "1.0.18"
shell-words = "1.1.0"
supports-color = "2.0.0"
supports-unicode = "2.0.0"
serde_json = "1.0.104"
thiserror = "1.0.44"
nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" }
[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"