mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-15 23:01:02 +00:00
23 lines
617 B
TOML
23 lines
617 B
TOML
[package]
|
|
name = "gst-plugin-http"
|
|
version = "0.5.0"
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
license = "MIT/Apache-2.0"
|
|
description = "Rust HTTP Plugin"
|
|
|
|
[dependencies]
|
|
url = "1.1"
|
|
glib = { version = "0.8" }
|
|
reqwest = "0.9"
|
|
hyperx = "0.15"
|
|
gstreamer = { version = "0.14", features = ["subclassing"] }
|
|
gstreamer-base = { version = "0.14", features = ["subclassing"] }
|
|
|
|
[lib]
|
|
name = "gstrshttp"
|
|
crate-type = ["cdylib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
|