Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.com>2019-05-10 14:24:14 +0300
committerGuillaume Desmottes <guillaume.desmottes@collabora.com>2019-05-23 17:49:13 +0300
commitd7125aee68983659470b950d9f1bfc6a0bc46a66 (patch)
treed54e09738d8f95bad6668205374bb77133678dcb
parentcfe660ae8232d0e7bbfe9b949319189820546e2a (diff)
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.
-rw-r--r--Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1d9377060..7731cce89 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,3 +18,6 @@ lto = true
opt-level = 3
debug = true
panic = 'unwind'
+
+[profile.dev]
+opt-level = 1