mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-14 14:21:02 +00:00
714301d584
We're working just fine with 1.8 too
28 lines
1 KiB
TOML
28 lines
1 KiB
TOML
[package]
|
|
name = "gst-plugin"
|
|
version = "0.1.0"
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
categories = ["multimedia"]
|
|
description = "Infrastructure for writing GStreamer plugins in Rust"
|
|
repository = "https://github.com/sdroege/gst-plugin-rs/tree/master/gst-plugin"
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
homepage = "https://gstreamer.freedesktop.org"
|
|
documentation = "https://sdroege.github.io/rustdoc/gst-plugin/gst_plugin/"
|
|
keywords = ["gstreamer", "multimedia", "audio", "video", "gnome"]
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
lazy_static = "1.0"
|
|
byteorder = "1.0"
|
|
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
|
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
|
|
gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
|
|
gstreamer-base-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
|
|
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" }
|
|
|
|
[lib]
|
|
name = "gst_plugin"
|
|
path = "src/lib.rs"
|