gst-plugins-rs/utils/togglerecord/Cargo.toml

36 lines
1.1 KiB
TOML
Raw Normal View History

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>"]
license = "LGPL-2.1-or-later"
description = "Toggle Record Plugin"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
edition = "2018"
2017-12-05 07:52:31 +00:00
[dependencies]
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
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"
more-asserts = "0.2"
lazy_static = "1.0"
[dev-dependencies]
2017-12-05 07:52:31 +00:00
either = "1.0"
[lib]
name = "gsttogglerecord"
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"
required-features = ["gtk", "gio"]
[build-dependencies]
gst-plugin-version-helper = { path="../../version-helper" }