2018-12-28 22:00:28 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-closedcaption"
|
2019-07-07 10:20:15 +00:00
|
|
|
version = "0.6.0"
|
2020-07-29 09:54:15 +00:00
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>", "Jordan Petridis <jordan@centricular.com>", "Matthew Waters <matthew@centricular.com>"]
|
2020-04-16 11:06:34 +00:00
|
|
|
license = "LGPL-2.1-or-later"
|
2018-12-28 22:00:28 +00:00
|
|
|
edition = "2018"
|
2019-06-03 10:53:58 +00:00
|
|
|
description = "Rust Closed Caption Plugin"
|
|
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
2018-12-28 22:00:28 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-11-01 08:24:02 +00:00
|
|
|
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
|
2020-01-30 08:27:05 +00:00
|
|
|
combine = "4.0"
|
2020-11-05 08:33:19 +00:00
|
|
|
nom = "6.0"
|
2018-12-28 22:00:28 +00:00
|
|
|
either = "1"
|
2019-11-20 22:43:55 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2018-12-28 22:00:28 +00:00
|
|
|
chrono = "0.4"
|
2019-01-21 19:45:00 +00:00
|
|
|
lazy_static = "1.2"
|
2020-03-06 17:25:32 +00:00
|
|
|
atomic_refcell = "0.1"
|
2020-11-01 08:24:02 +00:00
|
|
|
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs", features=["use_glib"] }
|
|
|
|
cairo-sys-rs = { git = "https://github.com/gtk-rs/gtk-rs" }
|
|
|
|
pango = { git = "https://github.com/gtk-rs/gtk-rs" }
|
|
|
|
pangocairo = { git = "https://github.com/gtk-rs/gtk-rs" }
|
2020-07-29 09:54:15 +00:00
|
|
|
byteorder = "1"
|
2018-12-28 22:00:28 +00:00
|
|
|
|
2018-12-31 09:35:13 +00:00
|
|
|
[dependencies.gst]
|
|
|
|
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
|
2020-05-22 14:34:20 +00:00
|
|
|
features = ["v1_16"]
|
2018-12-31 09:35:13 +00:00
|
|
|
package="gstreamer"
|
|
|
|
|
|
|
|
[dependencies.gst-base]
|
|
|
|
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
|
2020-05-22 14:34:20 +00:00
|
|
|
features = ["v1_16"]
|
2018-12-31 09:35:13 +00:00
|
|
|
package="gstreamer-base"
|
|
|
|
|
|
|
|
[dependencies.gst-video]
|
|
|
|
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
|
2020-05-22 14:34:20 +00:00
|
|
|
features = ["v1_16"]
|
2018-12-31 09:35:13 +00:00
|
|
|
package="gstreamer-video"
|
|
|
|
|
2018-12-28 22:00:28 +00:00
|
|
|
[dev-dependencies]
|
2019-02-22 11:17:54 +00:00
|
|
|
pretty_assertions = "0.6"
|
2019-07-02 14:41:27 +00:00
|
|
|
rand = { version = "0.7", features = ["small_rng"] }
|
2018-12-28 22:00:28 +00:00
|
|
|
|
2018-12-31 09:35:13 +00:00
|
|
|
[dev-dependencies.gst-check]
|
|
|
|
git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
|
|
|
|
package="gstreamer-check"
|
|
|
|
|
2018-12-28 22:00:28 +00:00
|
|
|
[lib]
|
|
|
|
name = "gstrsclosedcaption"
|
2020-11-16 14:23:51 +00:00
|
|
|
crate-type = ["cdylib", "rlib", "staticlib"]
|
2018-12-28 22:00:28 +00:00
|
|
|
path = "src/lib.rs"
|
2019-06-03 10:53:58 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2020-04-05 14:38:52 +00:00
|
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|
2020-03-06 17:25:32 +00:00
|
|
|
cc = "1.0"
|