Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Cargo.toml « gst-plugin-togglerecord - github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf7fa22d6e71ec7c3956acfea26707dc16b8cd2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[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"]