mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-03 15:58:42 +00:00
d398d4a7dc
This moves to Rusoto 0.43, which has moved from futures to async/.await. As a result, we implement a utility function to convert the async/streaming bits to blocking operations backed by a tokio runtime. In the process, we also need to restructure s3sink a little, so that the client is now part of the started state (like it is for s3src). This is a better model than a separate client, as it reflects the condition that the client is only available in the started state.
29 lines
867 B
TOML
29 lines
867 B
TOML
[package]
|
|
name = "gst-plugin-rusoto"
|
|
version = "0.6.0"
|
|
authors = ["Arun Raghavan <arun@arunraghavan.net>"]
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
license = "MIT/Apache-2.0"
|
|
description = "Amazon S3 Plugin"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bytes = "0.5"
|
|
futures = "0.3"
|
|
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"] }
|
|
rusoto_core = "0.43"
|
|
rusoto_s3 = "0.43"
|
|
url = "2"
|
|
percent-encoding = "2"
|
|
tokio = { version = "0.2", features = [ "rt-threaded" ] }
|
|
lazy_static = "1.0"
|
|
|
|
[lib]
|
|
name = "gstrusoto"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|