gst-plugins-rs/Cargo.toml
Sebastian Dröge 3ce6a5f403 Only list plugins without external C dependencies as default-members of the cargo workspace
`cargo build` will only build the default members while `cargo build --all`
would continue to build all plugins.

Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/167
2021-09-25 14:11:55 +03:00

65 lines
1.1 KiB
TOML

[workspace]
members = [
"tutorial",
"version-helper",
"audio/audiofx",
"audio/claxon",
"audio/csound",
"audio/lewton",
"generic/file",
"generic/sodium",
"generic/threadshare",
"net/reqwest",
"net/rusoto",
"utils/fallbackswitch",
"utils/togglerecord",
"video/cdg",
"video/closedcaption",
"video/dav1d",
"video/ffv1",
"video/flavors",
"video/gif",
"video/rav1e",
"video/rspng",
"video/hsv",
"video/webp",
"text/wrap",
"text/json",
"text/regex",
]
# Only plugins without external dependencies
default-members = [
"tutorial",
"version-helper",
"audio/audiofx",
"audio/claxon",
"audio/lewton",
"generic/file",
"generic/threadshare",
"net/reqwest",
"net/rusoto",
"utils/fallbackswitch",
"utils/togglerecord",
"video/cdg",
"video/ffv1",
"video/flavors",
"video/gif",
"video/rav1e",
"video/rspng",
"video/hsv",
"text/wrap",
"text/json",
"text/regex",
]
[profile.release]
lto = true
opt-level = 3
debug = true
panic = 'unwind'
[profile.dev]
opt-level = 1