forked from nextest-rs/nextest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (52 loc) · 1.61 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
[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]
bstr = { version = "1.10.0", default-features = false, features = ["std"] }
debug-ignore = "1.0.5"
fixture-data = { path = "fixture-data" }
globset = "0.4.14"
guppy = "0.17.7"
maplit = "1.0.2"
miette = "7.2.0"
once_cell = "1.19.0"
owo-colors = { version = "4.0.0", features = ["supports-colors"] }
newtype-uuid = { version = "1.1.0", features = ["v4"] }
nextest-metadata = { version = "0.12.1", path = "nextest-metadata" }
nextest-workspace-hack = "0.1.0"
quick-junit = "0.5.0"
swrite = "0.1.0"
target-spec = { version = "3.2.1", features = ["custom", "summaries"] }
target-spec-miette = "0.4.0"
# 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" }