mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-23 20:10:59 +00:00
a8e16d4815
After a `cargo clean` the shared library is not yet present if the test is started with `cargo test`.
29 lines
881 B
TOML
29 lines
881 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" }
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
|
|
gst-plugin = { path = "../gst-plugin" }
|
|
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"]
|
|
|