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

Cargo.toml « gst-plugin - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5718d2aa1b9dcf5e901bb93244b9604c4664fc88 (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"
version = "0.1.4"
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/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 = "0.5"
gobject-sys = "0.5"
gstreamer-sys = "0.4"
gstreamer-base-sys = "0.4"
glib = "0.4"
gstreamer = "0.10"
gstreamer-base = "0.10"

[lib]
name = "gst_plugin"
path = "src/lib.rs"