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

27 lines
801 B
TOML
Raw Normal View History

2017-12-05 07:52:31 +00:00
[package]
name = "gst-plugin-togglerecord"
2019-02-22 11:27:47 +00:00
version = "0.5.0"
2017-12-05 07:52:31 +00:00
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
license = "LGPL-2.1+"
[dependencies]
glib = { git = "https://github.com/gtk-rs/glib", features = ["subclassing"] }
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
2019-02-07 07:54:03 +00:00
gtk = { git = "https://github.com/gtk-rs/gtk", optional = true }
2017-12-05 07:52:31 +00:00
gio = { git = "https://github.com/gtk-rs/gio", optional = true }
2019-05-24 11:33:51 +00:00
parking_lot = "0.8"
[dev-dependencies]
2017-12-05 07:52:31 +00:00
either = "1.0"
[lib]
name = "gsttogglerecord"
crate-type = ["cdylib", "rlib"]
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"]