mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-23 20:10:59 +00:00
27 lines
823 B
TOML
27 lines
823 B
TOML
[package]
|
|
name = "gst-plugin-togglerecord"
|
|
version = "0.4.0"
|
|
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" }
|
|
gtk = { git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true }
|
|
gio = { git = "https://github.com/gtk-rs/gio", optional = true }
|
|
parking_lot = "0.6"
|
|
|
|
[dev-dependencies]
|
|
either = "1.0"
|
|
|
|
[lib]
|
|
name = "gsttogglerecord"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[[example]]
|
|
name = "gtk-recording"
|
|
path = "examples/gtk_recording.rs"
|
|
required-features = ["gtk", "gio"]
|
|
|