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

29 lines
622 B
TOML

[package]
name = "gst-plugin-togglerecord"
version = "0.3.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
license = "LGPL-2.1+"
[dependencies]
glib = "0.6"
gstreamer = "0.12"
gstreamer-video = "0.12"
gobject-subclass = "0.2"
gst-plugin = { version = "0.3", path = "../gst-plugin" }
gtk = { version = "0.5", features = ["v3_6"], optional = true }
gio = { version = "0.5", optional = true }
[dev-dependencies]
either = "1.0"
[lib]
name = "gsttogglerecord"
crate-type = ["cdylib"]
path = "src/lib.rs"
[[example]]
name = "gtk-recording"
path = "examples/gtk_recording.rs"
required-features = ["gtk", "gio"]