gst-plugins-rs/net/rusoto/Cargo.toml

30 lines
822 B
TOML
Raw Normal View History

[package]
name = "gst-plugin-rusoto"
2019-07-07 10:20:15 +00:00
version = "0.6.0"
authors = ["Arun Raghavan <arun@arunraghavan.net>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs"
license = "MIT/Apache-2.0"
description = "Amazon S3 Plugin"
edition = "2018"
[dependencies]
bytes = "0.4"
futures = "0.1"
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] }
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] }
2019-11-20 22:43:55 +00:00
rusoto_core = "0.42"
rusoto_s3 = "0.42"
2019-07-24 10:05:55 +00:00
url = "2"
percent-encoding = "2"
tokio = "0.1"
lazy_static = "1.0"
[lib]
name = "gstrusoto"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../../version-helper" }