mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-13 05:41:05 +00:00
53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
[package]
|
|
name = "gst-plugin-inter"
|
|
version.workspace = true
|
|
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
|
|
license = "MPL-2.0"
|
|
description = "GStreamer Inter Plugin"
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
gst = { workspace = true, features = ["v1_18"] }
|
|
gst-utils.workspace = true
|
|
gst-app.workspace = true
|
|
once_cell = "1.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1"
|
|
gst-check.workspace = true
|
|
futures = "0.3"
|
|
tokio = { version = "1", features = ["fs", "macros", "rt-multi-thread", "time"] }
|
|
tokio-stream = "0.1.11"
|
|
serial_test = "3"
|
|
|
|
[lib]
|
|
name = "gstrsinter"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper.workspace = true
|
|
|
|
[features]
|
|
static = []
|
|
capi = []
|
|
doc = ["gst/v1_18"]
|
|
|
|
[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, gobject-2.0, glib-2.0, gmodule-2.0"
|
|
|
|
[[example]]
|
|
name = "plug-and-play"
|