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-05 17:38:52 +0300
committerArun Raghavan <arun@arunraghavan.net>2020-04-05 22:10:47 +0300
commitdc3c8fd0494056ae5e5f87aa716b4c3866af6591 (patch)
tree3226cac3439fd29b7b02f6456f3162d6a3d1e00a /video/closedcaption/Cargo.toml
parent205b6040fbb918c0fa736874b09f8e3f3f261e44 (diff)
Drop gst-plugin- prefix in plugin directory name
Diffstat (limited to 'video/closedcaption/Cargo.toml')
-rw-r--r--video/closedcaption/Cargo.toml49
1 files changed, 49 insertions, 0 deletions
diff --git a/video/closedcaption/Cargo.toml b/video/closedcaption/Cargo.toml
new file mode 100644
index 000000000..9f98dd270
--- /dev/null
+++ b/video/closedcaption/Cargo.toml
@@ -0,0 +1,49 @@
+[package]
+name = "gst-plugin-closedcaption"
+version = "0.6.0"
+authors = ["Sebastian Dröge <sebastian@centricular.com>", "Jordan Petridis <jordan@centricular.com>"]
+license = "LGPL-2.1+"
+edition = "2018"
+description = "Rust Closed Caption Plugin"
+repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
+
+[dependencies]
+glib = { git = "https://github.com/gtk-rs/glib" }
+combine = "3.6"
+either = "1"
+uuid = { version = "0.8", features = ["v4"] }
+chrono = "0.4"
+lazy_static = "1.2"
+atomic_refcell = "0.1"
+
+[dependencies.gst]
+git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+features = ["v1_12"]
+package="gstreamer"
+
+[dependencies.gst-base]
+git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+features = ["v1_12"]
+package="gstreamer-base"
+
+[dependencies.gst-video]
+git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+features = ["v1_12"]
+package="gstreamer-video"
+
+[dev-dependencies]
+pretty_assertions = "0.6"
+rand = { version = "0.7", features = ["small_rng"] }
+
+[dev-dependencies.gst-check]
+git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
+package="gstreamer-check"
+
+[lib]
+name = "gstrsclosedcaption"
+crate-type = ["cdylib", "rlib"]
+path = "src/lib.rs"
+
+[build-dependencies]
+gst-plugin-version-helper = { path="../../version-helper" }
+cc = "1.0"