gst-plugins-rs/gst-plugin-reqwest/Cargo.toml

31 lines
849 B
TOML
Raw Normal View History

[package]
2019-06-26 04:40:21 +00:00
name = "gst-plugin-reqwest"
2019-07-07 10:20:15 +00:00
version = "0.6.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"
edition = "2018"
[dependencies]
2019-07-24 10:05:55 +00:00
url = "1.7"
2018-11-04 18:46:07 +00:00
glib = { git = "https://github.com/gtk-rs/glib" }
reqwest = "0.9"
futures = "0.1.23"
2019-05-24 11:33:51 +00:00
hyperx = "0.15"
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_10", "subclassing"] }
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
tokio = "0.1"
bytes = "0.4"
[dev-dependencies]
hyper = "0.12"
[lib]
name = "gstrshttp"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }