Browse Source

Cargo: include debug symbols in all build types

Release profile defaults to no building debug symbols making it hard
to get useful backtraces from users.
environments/review-bilelmouss-0wa3h6/deployments/82
Jordan Petridis 7 years ago
parent
commit
10b1f4503c
  1. 3
      Cargo.toml

3
Cargo.toml

@ -6,7 +6,8 @@ members = [
[profile.release]
panic = "abort"
debug = true
[profile.dev]
panic = "abort"
debug = true

Loading…
Cancel
Save