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
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,14 @@ test-support = []
# Release profile for a deployed long-running daemon + the bundled plugin
# binary (full-review BM4). `panic = "abort"` is deliberately NOT set:
# run_db recovers DB-task panics via JoinError::is_panic.
# CI compiles this workspace from scratch constantly (CARGO_INCREMENTAL=0 is
# required under the kache rustc-wrapper), and full DWARF is a large share of
# that time. "line-tables-only" keeps file/line in panics and backtraces --
# what CI output is actually read for -- while skipping the type/variable
# debuginfo only an interactive debugger uses. Matches labby.
[profile.dev]
debug = "line-tables-only"

[profile.release]
lto = "thin"
strip = "symbols"
Expand Down
Loading