mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-23 03:50:59 +00:00
62a237ff0c
And implement the Demuxer base class on top of that, with no unsafe code left whatsoever
24 lines
836 B
TOML
24 lines
836 B
TOML
[package]
|
|
name = "gst-plugin"
|
|
version = "0.1.0"
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
repository = "https://github.com/sdroege/rsplugin/gst-plugin"
|
|
license = "MIT/Apache-2.0"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
url = "1.1"
|
|
lazy_static = "0.2"
|
|
byteorder = "1.0"
|
|
mopa = "0.2"
|
|
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", features = ["v1_10"] }
|
|
gstreamer-base-sys = { git = "https://github.com/sdroege/gstreamer-sys", features = ["v1_10"] }
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs", features = ["v1_10"] }
|
|
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
|
|
|
|
[lib]
|
|
name = "gst_plugin"
|
|
path = "src/lib.rs"
|