2016-12-23 17:04:32 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
2017-12-22 13:41:24 +00:00
|
|
|
categories = ["multimedia"]
|
|
|
|
description = "Infrastructure for writing GStreamer plugins in Rust"
|
2017-12-22 21:18:38 +00:00
|
|
|
repository = "https://github.com/sdroege/gst-plugin-rs/tree/master/gst-plugin"
|
2017-02-16 15:52:27 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-12-22 13:41:24 +00:00
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://gstreamer.freedesktop.org"
|
2017-12-22 14:27:07 +00:00
|
|
|
documentation = "https://sdroege.github.io/rustdoc/gst-plugin/gst_plugin/"
|
2017-12-22 13:41:24 +00:00
|
|
|
keywords = ["gstreamer", "multimedia", "audio", "video", "gnome"]
|
2016-12-23 17:04:32 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libc = "0.2"
|
2017-12-04 09:12:32 +00:00
|
|
|
lazy_static = "1.0"
|
2017-01-13 10:52:41 +00:00
|
|
|
byteorder = "1.0"
|
2017-09-08 21:51:19 +00:00
|
|
|
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
|
|
|
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
|
2018-01-15 07:34:53 +00:00
|
|
|
gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
|
|
|
|
gstreamer-base-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
|
2017-09-08 21:51:19 +00:00
|
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
2018-01-15 07:34:53 +00:00
|
|
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
2017-09-16 17:35:01 +00:00
|
|
|
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
|
2016-12-23 17:04:32 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "gst_plugin"
|
|
|
|
path = "src/lib.rs"
|