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:
authorThibault Saunier <tsaunier@igalia.com>2022-08-26 01:30:08 +0300
committerThibault Saunier <tsaunier@igalia.com>2022-08-30 01:33:22 +0300
commit31a53bba8ae22d4be44861c868fb663fd46a69a3 (patch)
tree480e63405d0f1fc51ad147eb795879cc7bac644b /text
parent25465fd9f3c65ecc3ce089d56a0c746fcd6a839c (diff)
Generate plugins documentation using hotdoc
Which will automatically be integrated in gstreamer documentation
Diffstat (limited to 'text')
-rw-r--r--text/ahead/Cargo.toml1
-rw-r--r--text/ahead/src/lib.rs5
-rw-r--r--text/json/Cargo.toml1
-rw-r--r--text/json/src/lib.rs5
-rw-r--r--text/regex/Cargo.toml1
-rw-r--r--text/regex/src/lib.rs5
-rw-r--r--text/wrap/Cargo.toml1
-rw-r--r--text/wrap/src/lib.rs5
8 files changed, 24 insertions, 0 deletions
diff --git a/text/ahead/Cargo.toml b/text/ahead/Cargo.toml
index f1e60349..ae78f5b3 100644
--- a/text/ahead/Cargo.toml
+++ b/text/ahead/Cargo.toml
@@ -23,6 +23,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
static = []
capi = []
+doc = ["gst/v1_18"]
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/text/ahead/src/lib.rs b/text/ahead/src/lib.rs
index 003ce7f5..5e9afa43 100644
--- a/text/ahead/src/lib.rs
+++ b/text/ahead/src/lib.rs
@@ -7,6 +7,11 @@
// SPDX-License-Identifier: MPL-2.0
#![allow(clippy::non_send_fields_in_send_ty)]
+/**
+ * plugin-textahead:
+ *
+ * Since: plugins-rs-0.8.0
+ */
use gst::glib;
mod textahead;
diff --git a/text/json/Cargo.toml b/text/json/Cargo.toml
index 9c261e71..194b5d97 100644
--- a/text/json/Cargo.toml
+++ b/text/json/Cargo.toml
@@ -33,6 +33,7 @@ package="gstreamer-check"
default = ["gst/ser_de"]
static = ["default"]
capi = []
+doc = ["gst/v1_18"]
[package.metadata.capi]
min_version = "0.7.0"
diff --git a/text/json/src/lib.rs b/text/json/src/lib.rs
index 213c8194..29c0e811 100644
--- a/text/json/src/lib.rs
+++ b/text/json/src/lib.rs
@@ -8,6 +8,11 @@
#![allow(clippy::non_send_fields_in_send_ty)]
#![recursion_limit = "128"]
+/**
+ * plugin-rsjson:
+ *
+ * Since: plugins-rs-0.5.0
+ */
use gst::glib;
mod jsongstenc;
diff --git a/text/regex/Cargo.toml b/text/regex/Cargo.toml
index 1945be6d..d1dafc48 100644
--- a/text/regex/Cargo.toml
+++ b/text/regex/Cargo.toml
@@ -31,6 +31,7 @@ package="gstreamer-check"
[features]
static = []
capi = []
+doc = ["gst/v1_18"]
[package.metadata.capi]
min_version = "0.8.0"
diff --git a/text/regex/src/lib.rs b/text/regex/src/lib.rs
index 7181d2ca..bb774369 100644
--- a/text/regex/src/lib.rs
+++ b/text/regex/src/lib.rs
@@ -8,6 +8,11 @@
#![allow(clippy::non_send_fields_in_send_ty)]
#![recursion_limit = "128"]
+/**
+ * plugin-rsregex:
+ *
+ * Since: plugins-rs-0.7.0
+ */
use gst::glib;
mod gstregex;
diff --git a/text/wrap/Cargo.toml b/text/wrap/Cargo.toml
index 38c5433b..10519d5d 100644
--- a/text/wrap/Cargo.toml
+++ b/text/wrap/Cargo.toml
@@ -32,6 +32,7 @@ package="gstreamer-check"
[features]
static = []
capi = []
+doc = ["gst/v1_18"]
[package.metadata.capi]
min_version = "0.9.3"
diff --git a/text/wrap/src/lib.rs b/text/wrap/src/lib.rs
index 642faf49..d7cb8e90 100644
--- a/text/wrap/src/lib.rs
+++ b/text/wrap/src/lib.rs
@@ -8,6 +8,11 @@
#![allow(clippy::non_send_fields_in_send_ty)]
#![recursion_limit = "128"]
+/**
+ * plugin-rstextwrap:
+ *
+ * Since: plugins-rs-0.6.0
+ */
use gst::glib;
mod gsttextwrap;