gst-plugins-rs/Cargo.toml
Guillaume Desmottes 61cdf47462 add spotify plugin
Plugin adding an element to play audio from Spotify.
2021-12-29 16:48:20 +01:00

72 lines
1.3 KiB
TOML

[workspace]
members = [
"tutorial",
"version-helper",
"audio/audiofx",
"audio/claxon",
"audio/csound",
"audio/lewton",
"audio/spotify",
"generic/fmp4",
"generic/file",
"generic/sodium",
"generic/threadshare",
"net/hlssink3",
"net/reqwest",
"net/rusoto",
"utils/fallbackswitch",
"utils/togglerecord",
"utils/uriplaylistbin",
"video/cdg",
"video/closedcaption",
"video/videofx",
"video/dav1d",
"video/ffv1",
"video/flavors",
"video/gif",
"video/gtk4",
"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",
"utils/uriplaylistbin",
"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