Skip to content

Commit 7729535

Browse files
authored
Merge pull request #6 from passcod/patch-1
Fix frame-pointers cargo option
2 parents 94c6137 + 82f7589 commit 7729535

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ Use hud to narrow down suspects, then dig deeper with instrumentation if needed.
5454
# Cargo.toml
5555
[profile.release]
5656
debug = true
57-
force-frame-pointers = true
57+
frame-pointers = "force-on"
5858
```
5959

60-
> `debug = true` adds ~10-20% to binary size. `force-frame-pointers` adds ~1-2% runtime overhead. For production, you can swap in a debug-enabled binary temporarily for investigation.
60+
> `debug = true` adds ~10-20% to binary size. `frame-pointers` adds ~1-2% runtime overhead. For production, you can swap in a debug-enabled binary temporarily for investigation.
6161
6262
## Install
6363

0 commit comments

Comments
 (0)