File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,7 @@ lto = false # controls `-C lto` for binaries and staticlibs
154
154
debug-assertions = true # controls whether debug assertions are enabled
155
155
codegen-units = 1 # controls whether the compiler passes `-C codegen-units`
156
156
# `codegen-units` is ignored when `lto = true`
157
+ panic = ' unwind' # panic strategy (`-C panic=...`), can also be 'abort'
157
158
158
159
# The release profile, used for `cargo build --release`.
159
160
[profile .release ]
@@ -163,6 +164,7 @@ rpath = false
163
164
lto = false
164
165
debug-assertions = false
165
166
codegen-units = 1
167
+ panic = ' unwind'
166
168
167
169
# The testing profile, used for `cargo test`.
168
170
[profile .test ]
@@ -172,6 +174,7 @@ rpath = false
172
174
lto = false
173
175
debug-assertions = true
174
176
codegen-units = 1
177
+ panic = ' unwind'
175
178
176
179
# The benchmarking profile, used for `cargo bench`.
177
180
[profile .bench ]
@@ -181,6 +184,7 @@ rpath = false
181
184
lto = false
182
185
debug-assertions = false
183
186
codegen-units = 1
187
+ panic = ' unwind'
184
188
185
189
# The documentation profile, used for `cargo doc`.
186
190
[profile .doc ]
@@ -190,6 +194,7 @@ rpath = false
190
194
lto = false
191
195
debug-assertions = true
192
196
codegen-units = 1
197
+ panic = ' unwind'
193
198
```
194
199
195
200
# The ` [features] ` Section
You can’t perform that action at this time.
0 commit comments