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

29 lines
731 B
TOML
Raw Normal View History

2017-12-05 07:52:31 +00:00
[package]
name = "gst-plugin-togglerecord"
2018-01-03 15:50:58 +00:00
version = "0.1.2"
2017-12-05 07:52:31 +00:00
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
license = "LGPL-2.1+"
[dependencies]
glib = "0.4"
gstreamer = { version = "0.10", features = ["v1_10"] }
gstreamer-video = { version = "0.10", features = ["v1_10"] }
gst-plugin = { version = "0.1", path = "../gst-plugin" }
gtk = { version = "0.3", features = ["v3_6"], optional = true }
gio = { version = "0.3", optional = true }
2017-12-05 07:52:31 +00:00
send-cell = { version = "0.1", optional = true }
[dev-dependencies]
2017-12-05 07:52:31 +00:00
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", "send-cell"]