2017-12-05 07:52:31 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-togglerecord"
|
2019-07-07 10:20:15 +00:00
|
|
|
version = "0.6.0"
|
2017-12-05 07:52:31 +00:00
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
2020-04-16 11:06:34 +00:00
|
|
|
license = "LGPL-2.1-or-later"
|
2019-06-03 10:53:58 +00:00
|
|
|
description = "Toggle Record Plugin"
|
|
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
2019-07-03 15:43:58 +00:00
|
|
|
edition = "2018"
|
2017-12-05 07:52:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-11-01 08:24:02 +00:00
|
|
|
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
|
2019-09-09 07:45:06 +00:00
|
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2019-07-10 16:30:04 +00:00
|
|
|
gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2018-11-03 18:24:21 +00:00
|
|
|
gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2020-11-01 08:24:02 +00:00
|
|
|
gtk = { git = "https://github.com/gtk-rs/gtk-rs", optional = true }
|
|
|
|
gio = { git = "https://github.com/gtk-rs/gtk-rs", optional = true }
|
2020-06-30 07:49:27 +00:00
|
|
|
parking_lot = "0.11"
|
2020-08-05 15:24:10 +00:00
|
|
|
more-asserts = "0.2"
|
2019-10-31 22:34:21 +00:00
|
|
|
lazy_static = "1.0"
|
2017-12-05 17:30:23 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2017-12-05 07:52:31 +00:00
|
|
|
either = "1.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "gsttogglerecord"
|
2020-11-16 14:23:51 +00:00
|
|
|
crate-type = ["cdylib", "rlib", "staticlib"]
|
2017-12-05 07:52:31 +00:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "gtk-recording"
|
|
|
|
path = "examples/gtk_recording.rs"
|
2018-07-27 10:35:24 +00:00
|
|
|
required-features = ["gtk", "gio"]
|
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" }
|