mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 11:30:59 +00:00
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
This commit is contained in:
parent
7708b65e97
commit
3ce6a5f403
1 changed files with 25 additions and 0 deletions
25
Cargo.toml
25
Cargo.toml
|
@ -29,6 +29,31 @@ members = [
|
|||
"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
|
||||
|
|
Loading…
Reference in a new issue