Skip to content
Merged
Changes from 1 commit
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
Next Next commit
build: turn off debug-info
it's mostly useless anyway, but could be overriden if needed.
  • Loading branch information
pepyakin committed Dec 18, 2023
commit 9b7828e9b4f7d75a5c0f0f6434e3443426489bcb
13 changes: 10 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
[profile.release]
panic = "unwind"
incremental = true
debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.

[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0

[workspace]
resolver = "2"
members = [
Expand All @@ -13,6 +23,3 @@ members = [
"sugondat-shim/common/sovereign",
"sugondat-subxt"
]

[profile.release]
panic = "unwind"