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

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/text
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-10-23 12:13:23 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-10-23 20:25:08 +0300
commit20ad9175d8e58f2285e709b576efdc822b009577 (patch)
tree93b9efad97196b6411efd36a05ce6b3e8411222d /text
parent45168639e9d7e850350202db5064d8be05daf576 (diff)
Make GStreamer plugin/crate/library/directory names and descriptions consistent
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/238
Diffstat (limited to 'text')
-rw-r--r--text/ahead/Cargo.toml2
-rw-r--r--text/json/Cargo.toml4
-rw-r--r--text/json/src/lib.rs4
-rw-r--r--text/regex/Cargo.toml4
-rw-r--r--text/regex/src/lib.rs4
-rw-r--r--text/wrap/Cargo.toml4
-rw-r--r--text/wrap/src/lib.rs4
7 files changed, 13 insertions, 13 deletions
diff --git a/text/ahead/Cargo.toml b/text/ahead/Cargo.toml
index 0cdd5887..fb560780 100644
--- a/text/ahead/Cargo.toml
+++ b/text/ahead/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.9.0-alpha.1"
authors = ["Guillaume Desmottes <guillaume@desmottes.be>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MPL-2.0"
-description = "GStreamer Plugin displaying upcoming text buffers ahead"
+description = "GStreamer Plugin for displaying upcoming text buffers ahead of time"
edition = "2021"
rust-version = "1.63"
diff --git a/text/json/Cargo.toml b/text/json/Cargo.toml
index 352c08af..d2eaba2b 100644
--- a/text/json/Cargo.toml
+++ b/text/json/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
license = "MPL-2.0"
edition = "2021"
rust-version = "1.63"
-description = "Rust JSON Plugin"
+description = "GStreamer JSON Plugin"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
[dependencies]
@@ -19,7 +19,7 @@ package="gstreamer"
features=["serde"]
[lib]
-name = "gstrsjson"
+name = "gstjson"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
diff --git a/text/json/src/lib.rs b/text/json/src/lib.rs
index 28370d7c..57d61e3b 100644
--- a/text/json/src/lib.rs
+++ b/text/json/src/lib.rs
@@ -9,7 +9,7 @@
#![recursion_limit = "128"]
/**
- * plugin-rsjson:
+ * plugin-json:
*
* Since: plugins-rs-0.5.0
*/
@@ -26,7 +26,7 @@ fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
}
gst::plugin_define!(
- rsjson,
+ json,
env!("CARGO_PKG_DESCRIPTION"),
plugin_init,
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
diff --git a/text/regex/Cargo.toml b/text/regex/Cargo.toml
index efff17f4..2d076237 100644
--- a/text/regex/Cargo.toml
+++ b/text/regex/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
license = "MPL-2.0"
edition = "2021"
rust-version = "1.63"
-description = "Rust Regular Expression Plugin"
+description = "GStreamer Regular Expression Plugin"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
[dependencies]
@@ -17,7 +17,7 @@ git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
package="gstreamer"
[lib]
-name = "gstrsregex"
+name = "gstregex"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
diff --git a/text/regex/src/lib.rs b/text/regex/src/lib.rs
index f51201b0..de3ae7e4 100644
--- a/text/regex/src/lib.rs
+++ b/text/regex/src/lib.rs
@@ -9,7 +9,7 @@
#![recursion_limit = "128"]
/**
- * plugin-rsregex:
+ * plugin-regex:
*
* Since: plugins-rs-0.7.0
*/
@@ -22,7 +22,7 @@ fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
}
gst::plugin_define!(
- rsregex,
+ regex,
env!("CARGO_PKG_DESCRIPTION"),
plugin_init,
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
diff --git a/text/wrap/Cargo.toml b/text/wrap/Cargo.toml
index 61c631c0..371b9625 100644
--- a/text/wrap/Cargo.toml
+++ b/text/wrap/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
license = "MPL-2.0"
edition = "2021"
rust-version = "1.63"
-description = "Rust Text Wrap Plugin"
+description = "GStreamer Text Wrap Plugin"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
[dependencies]
@@ -18,7 +18,7 @@ git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
package="gstreamer"
[lib]
-name = "gstrstextwrap"
+name = "gsttextwrap"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
diff --git a/text/wrap/src/lib.rs b/text/wrap/src/lib.rs
index f5ae94ef..4b5190c6 100644
--- a/text/wrap/src/lib.rs
+++ b/text/wrap/src/lib.rs
@@ -9,7 +9,7 @@
#![recursion_limit = "128"]
/**
- * plugin-rstextwrap:
+ * plugin-textwrap:
*
* Since: plugins-rs-0.6.0
*/
@@ -22,7 +22,7 @@ fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
}
gst::plugin_define!(
- rstextwrap,
+ textwrap,
env!("CARGO_PKG_DESCRIPTION"),
plugin_init,
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),