2019-05-24 12:16:36 +00:00
|
|
|
[package]
|
2019-10-21 07:31:03 +00:00
|
|
|
name = "gst-plugin-rusoto"
|
2022-01-15 18:33:49 +00:00
|
|
|
version = "0.9.0"
|
2020-05-28 22:55:25 +00:00
|
|
|
authors = ["Arun Raghavan <arun@arunraghavan.net>",
|
|
|
|
"Jordan Petridis <jordan@centricular.com>",
|
|
|
|
"Mathieu Duponchelle <mathieu@centricular.com>"]
|
2020-04-05 14:43:05 +00:00
|
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
2022-01-15 18:40:12 +00:00
|
|
|
license = "MPL-2.0"
|
2020-05-28 22:55:25 +00:00
|
|
|
description = "Amazon Web Services plugin"
|
2021-10-31 10:54:12 +00:00
|
|
|
edition = "2021"
|
2022-02-21 20:38:01 +00:00
|
|
|
rust-version = "1.57"
|
2019-05-24 12:16:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-01-09 10:14:31 +00:00
|
|
|
bytes = "1.0"
|
2020-04-20 01:28:30 +00:00
|
|
|
futures = "0.3"
|
2021-07-20 19:49:24 +00:00
|
|
|
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
|
|
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2022-04-26 08:22:24 +00:00
|
|
|
rusoto_core = "0.48"
|
|
|
|
rusoto_s3 = "0.48"
|
|
|
|
rusoto_credential = "0.48"
|
|
|
|
rusoto_signature = "0.48"
|
2019-07-24 10:05:55 +00:00
|
|
|
url = "2"
|
|
|
|
percent-encoding = "2"
|
2022-02-23 18:10:30 +00:00
|
|
|
tokio = { version = "1.0", features = [ "rt-multi-thread", "time" ] }
|
2022-02-28 07:31:58 +00:00
|
|
|
async-tungstenite = { version = "0.17", features = ["tokio", "tokio-runtime", "tokio-native-tls"] }
|
2021-08-26 06:18:58 +00:00
|
|
|
nom = "7"
|
2022-04-26 08:22:24 +00:00
|
|
|
crc = "3"
|
2020-05-28 22:55:25 +00:00
|
|
|
byteorder = "1.3.4"
|
|
|
|
once_cell = "1.0"
|
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
|
|
|
serde_json = "1"
|
2020-12-29 15:28:19 +00:00
|
|
|
atomic_refcell = "0.1"
|
2021-09-27 16:16:26 +00:00
|
|
|
base32 = "0.4"
|
2022-02-23 18:10:30 +00:00
|
|
|
backoff = { version = "0.4", features = [ "futures", "tokio" ] }
|
2019-05-24 12:16:36 +00:00
|
|
|
|
|
|
|
[lib]
|
2019-10-21 07:31:03 +00:00
|
|
|
name = "gstrusoto"
|
2020-11-26 15:07:41 +00:00
|
|
|
crate-type = ["cdylib", "rlib"]
|
2019-05-24 12:16:36 +00:00
|
|
|
path = "src/lib.rs"
|
2019-06-03 10:53:58 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2020-04-05 14:38:52 +00:00
|
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|
2020-11-26 15:07:41 +00:00
|
|
|
|
|
|
|
[features]
|
2022-04-07 09:41:54 +00:00
|
|
|
static = []
|
2021-08-11 17:51:36 +00:00
|
|
|
capi = []
|
2020-11-26 15:07:41 +00:00
|
|
|
|
|
|
|
[package.metadata.capi]
|
2021-07-09 10:49:33 +00:00
|
|
|
min_version = "0.8.0"
|
2020-11-26 15:07:41 +00:00
|
|
|
|
|
|
|
[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"
|