forked from guppy-rs/guppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (38 loc) · 936 Bytes
/
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
[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"
guppy-workspace-hack = "0.1.0"
miette = "7.2.0"
[workspace.package]
rust-version = "1.75"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
[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