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:
authorArun Raghavan <arun@asymptotic.io>2020-04-04 02:26:41 +0300
committerArun Raghavan <arun@arunraghavan.net>2020-04-05 22:10:46 +0300
commit205b6040fbb918c0fa736874b09f8e3f3f261e44 (patch)
tree37ed0d22ece764ec91dccefd3c2148dc26d5b96b /Cargo.toml
parent5d992692f0c494c64a379de6201239efe614a15e (diff)
Reorganise plugins into directories by function
This should start making navigating the tree a little easier to start with, and we can then move to allowing building specific groups of plugins as well. The plugins are moved into the following hierarchy: audio / gst-plugin-audiofx / gst-plugin-claxon / gst-plugin-csound / gst-plugin-lewton generic / gst-plugin-file / gst-plugin-sodium / gst-plugin-threadshare net / gst-plugin-reqwest / gst-plugin-rusoto utils / gst-plugin-fallbackswitch / gst-plugin-togglerecord video / gst-plugin-cdg / gst-plugin-closedcaption / gst-plugin-dav1d / gst-plugin-flv / gst-plugin-gif / gst-plugin-rav1e gst-plugin-tutorial gst-plugin-version-helper
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml34
1 files changed, 17 insertions, 17 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 55ad99def..0e29b655e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,25 +1,25 @@
[workspace]
members = [
- "gst-plugin-dav1d",
- "gst-plugin-file",
- "gst-plugin-reqwest",
- "gst-plugin-flv",
- "gst-plugin-audiofx",
- "gst-plugin-togglerecord",
- "gst-plugin-threadshare",
"gst-plugin-tutorial",
- "gst-plugin-closedcaption",
"gst-plugin-version-helper",
- "gst-plugin-sodium",
- "gst-plugin-cdg",
- "gst-plugin-rav1e",
- "gst-plugin-rusoto",
- "gst-plugin-fallbackswitch",
- "gst-plugin-lewton",
- "gst-plugin-claxon",
- "gst-plugin-gif",
- "gst-plugin-csound",
+ "audio/gst-plugin-audiofx",
+ "audio/gst-plugin-claxon",
+ "audio/gst-plugin-csound",
+ "audio/gst-plugin-lewton",
+ "generic/gst-plugin-file",
+ "generic/gst-plugin-sodium",
+ "generic/gst-plugin-threadshare",
+ "net/gst-plugin-reqwest",
+ "net/gst-plugin-rusoto",
+ "utils/gst-plugin-fallbackswitch",
+ "utils/gst-plugin-togglerecord",
+ "video/gst-plugin-cdg",
+ "video/gst-plugin-closedcaption",
+ "video/gst-plugin-dav1d",
+ "video/gst-plugin-flv",
+ "video/gst-plugin-gif",
+ "video/gst-plugin-rav1e",
]
[profile.release]