forked from guppy-rs/guppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (47 loc) · 1.17 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
[workspace]
resolver = "2"
members = [
"cargo-guppy",
"fixtures",
"guppy",
"guppy-cmdlib",
"guppy-summaries",
"internal-tools/benchmarks",
"internal-tools/cargo-compare",
"internal-tools/fixture-manager",
"internal-tools/proptest-ext",
"target-spec",
"target-spec-miette",
"tools/cargo-hakari",
"tools/determinator",
"tools/hakari",
"workspace-hack",
]
[workspace.dependencies]
ahash = "0.8.11"
cfg-expr = "0.17.2"
datatest-stable = { version = "0.3.0", features = ["include-dir"] }
guppy-workspace-hack = "0.1.0"
include_dir = "0.7.4"
insta = "1.41.1"
miette = "7.4.0"
[workspace.package]
# Note: we commit to supporting the last 6 months of Rust releases. This
# typically means N-4 to 5.
rust-version = "1.78"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(doc_cfg)',
'cfg(guppy_nightly)',
] }
[patch.crates-io.guppy-workspace-hack]
path = "workspace-hack"
# Recommended for color-eyre
[profile.dev.package.backtrace]
opt-level = 3
# Build guppy in opt mode for tests, speeding up test runs
[profile.test.package.guppy]
opt-level = 3
[profile.profiling]
inherits = "release"
debug = true