Cargo: set opt-level to 1 in dev builds

We need some level of optimizations so the CDG decoder is usable in dev
build. '1' is suitable for debugging according to the doc.
This commit is contained in:
Guillaume Desmottes 2019-05-10 13:24:14 +02:00
parent cfe660ae82
commit d7125aee68

View file

@ -18,3 +18,6 @@ lto = true
opt-level = 3
debug = true
panic = 'unwind'
[profile.dev]
opt-level = 1