gst-flexhlssink-rs/Cargo.toml

34 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2021-05-12 09:19:02 +00:00
[package]
name = "gst-flexhlssink"
description = "GStreamer Plugin that is a highly configurable HLS (HTTP Live Streaming) sink"
2021-05-12 10:18:52 +00:00
repository = "https://github.com/rafaelcaricio/gst-flexhlssink-rs"
2021-05-12 09:19:02 +00:00
version = "0.1.0"
authors = ["Rafael Caricio <rafael@caricio.com>"]
edition = "2018"
2021-05-17 20:54:45 +00:00
license = "MIT OR Apache-2.0"
2021-05-12 09:19:02 +00:00
[lib]
name = "flexhlssink"
crate-type = ["cdylib", "rlib", "staticlib"]
path = "src/lib.rs"
[dependencies]
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"] }
2021-05-12 09:19:02 +00:00
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"] }
gst-app = { package = "gstreamer-app", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_14"]}
once_cell = "1.7.2"
m3u8-rs = "2.0.0"
bytes = "1.0.1"
[dev-dependencies]
gst-audio = { package = "gstreamer-audio", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"] }
2021-05-17 19:35:11 +00:00
gst-check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"] }
2021-05-12 09:19:02 +00:00
[build-dependencies]
gst-plugin-version-helper = { git = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs" }
[package.metadata.capi.pkg_config]
requires_private = "gstreamer-1.0, gstreamer-base-1.0, gobject-2.0, glib-2.0, gmodule-2.0"