Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -444,5 +444,14 @@ harness = false
name = "user_activity"
harness = false

# Test/dev build speed: the bottleneck for `cargo test` here is linking
# many large binaries (the daemon test suite especially), and full
# variable debuginfo dominates that link time. `line-tables-only` keeps
# file:line in panic backtraces while dropping the heavy per-variable
# DWARF, and on macOS it skips the slow dsymutil packaging step. The
# `test` profile inherits these from `dev`, so this covers both.
[profile.dev]
debug = "line-tables-only"

[lints]
workspace = true
Loading