mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-15 23:01:02 +00:00
28 lines
622 B
TOML
28 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"]
|
|
|