gst-plugins-rs/gst-plugin-togglerecord/Cargo.toml
Sebastian Dröge 6396781b84 Don't require GStreamer 1.10
We're working just fine with 1.8 too
2018-01-15 09:37:58 +02:00

29 lines
659 B
TOML

[package]
name = "gst-plugin-togglerecord"
version = "0.1.2"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
license = "LGPL-2.1+"
[dependencies]
glib = "0.4"
gstreamer = "0.10"
gstreamer-video = "0.10"
gst-plugin = { version = "0.1", path = "../gst-plugin" }
gtk = { version = "0.3", features = ["v3_6"], optional = true }
gio = { version = "0.3", optional = true }
send-cell = { version = "0.1", 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", "send-cell"]