2018-01-13 18:05:35 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-tutorial"
|
2018-09-09 23:02:31 +00:00
|
|
|
version = "0.4.0"
|
2018-01-13 18:05:35 +00:00
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
|
|
repository = "https://github.com/sdroege/gst-plugin-rs"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2018-09-06 10:56:16 +00:00
|
|
|
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
|
2018-01-13 18:05:35 +00:00
|
|
|
gst-plugin = { path="../gst-plugin" }
|
|
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
|
|
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
|
|
|
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
|
|
|
|
gstreamer-video = { git = "https://github.com/sdroege/gstreamer-rs" }
|
2018-02-05 14:46:55 +00:00
|
|
|
gstreamer-audio = { git = "https://github.com/sdroege/gstreamer-rs" }
|
2018-06-01 09:02:18 +00:00
|
|
|
byte-slice-cast = "0.2"
|
2018-02-21 12:36:37 +00:00
|
|
|
num-traits = "0.2"
|
2018-01-13 18:05:35 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "gstrstutorial"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
path = "src/lib.rs"
|