mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-04 01:06:27 +00:00
bdb0e72cc7
The proper SPDX name is LGPL-2.1-or-later, see https://spdx.org/licenses/
36 lines
1.2 KiB
TOML
36 lines
1.2 KiB
TOML
[package]
|
|
name = "gst-plugin-transcribe"
|
|
version = "0.6.0"
|
|
authors = ["Jordan Petridis <jordan@centricular.com>", "Mathieu Duponchelle <mathieu@centricular.com>"]
|
|
edition = "2018"
|
|
description = "AWS Transcribe plugin"
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
license = "LGPL-2.1-or-later"
|
|
|
|
[dependencies]
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
rusoto_core = "0.43.0-beta.1"
|
|
rusoto_credential = "0.43.0-beta.1"
|
|
rusoto_transcribe = "0.43.0-beta.1"
|
|
rusoto_signature = "0.43.0-beta.1"
|
|
reqwest = { version = "0.10", features = ["cookies", "gzip"] }
|
|
futures = "0.3"
|
|
tokio = { version = "0.2", features = ["time", "rt-threaded"] }
|
|
async-tungstenite = { version = "0.4", features = ["tokio", "tokio-runtime", "tokio-tls"] }
|
|
nom = "5.1.1"
|
|
crc = "1.8.1"
|
|
byteorder = "1.3.4"
|
|
once_cell = "1.0"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
|
|
[lib]
|
|
name = "gsttranscribe"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|