mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-13 22:01:19 +00:00
69bb09f7ad
For the region property this would be provided as `region-name+https://region.end/point` while for the URI this unfortunately has to be base32 encoded to allow usage as the host part of the URI.
59 lines
1.6 KiB
TOML
59 lines
1.6 KiB
TOML
[package]
|
|
name = "gst-plugin-rusoto"
|
|
version = "0.8.0"
|
|
authors = ["Arun Raghavan <arun@arunraghavan.net>",
|
|
"Jordan Petridis <jordan@centricular.com>",
|
|
"Mathieu Duponchelle <mathieu@centricular.com>"]
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
license = "MIT/Apache-2.0"
|
|
description = "Amazon Web Services plugin"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bytes = "1.0"
|
|
futures = "0.3"
|
|
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
rusoto_core = "0.47"
|
|
rusoto_s3 = "0.47"
|
|
rusoto_credential = "0.47"
|
|
rusoto_signature = "0.47"
|
|
url = "2"
|
|
percent-encoding = "2"
|
|
tokio = { version = "1.0", features = [ "rt-multi-thread" ] }
|
|
async-tungstenite = { version = "0.15", features = ["tokio", "tokio-runtime", "tokio-native-tls"] }
|
|
nom = "7"
|
|
crc = "2"
|
|
byteorder = "1.3.4"
|
|
once_cell = "1.0"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
atomic_refcell = "0.1"
|
|
base32 = "0.4"
|
|
|
|
[lib]
|
|
name = "gstrusoto"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|
|
|
|
[features]
|
|
# GStreamer 1.14 is required for static linking
|
|
static = ["gst/v1_14"]
|
|
capi = []
|
|
|
|
[package.metadata.capi]
|
|
min_version = "0.8.0"
|
|
|
|
[package.metadata.capi.header]
|
|
enabled = false
|
|
|
|
[package.metadata.capi.library]
|
|
install_subdir = "gstreamer-1.0"
|
|
versioning = false
|
|
|
|
[package.metadata.capi.pkg_config]
|
|
requires_private = "gstreamer-1.0, gstreamer-base-1.0, gobject-2.0, glib-2.0, gmodule-2.0, libssl"
|