Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Cargo.toml « gst-plugin-s3 - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c02121796c2f64d37f64fbe2366ec40426ab9fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "gst-plugin-s3"
version = "0.5.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 = { version = "0.8" }
gstreamer = { version = "0.14", features = ["subclassing", "v1_12"] }
gstreamer-base = { version = "0.14", features = ["subclassing", "v1_12"] }
rusoto_core = "0.40"
rusoto_s3 = "0.40"
url = "1.7"
tokio = "0.1"

[lib]
name = "gsts3"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"

[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }