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: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ description = "Gerrit-style stacked diffs for GitHub"
repository = "https://github.com/joshlf/gherrit"

[profile.release]
debug = true
# Strip full debug info, but keep line tables for backtraces. This makes full
# GDB debugging difficult, but ensures that backtraces provide file/line and
# function names.
strip = "none"
debug = "line-tables-only"
debug-assertions = true
lto = true

[dependencies]
gix = { version = "0.75.0", features = ["blocking-network-client"] }
Expand Down
Loading