mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 19:41:00 +00:00
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
|
[package]
|
||
|
name = "gst-plugin-relationmeta"
|
||
|
version.workspace = true
|
||
|
authors = ["Benjamin Gaignard <benjamin.gaignard@collabora.com>"]
|
||
|
repository.workspace = true
|
||
|
license = "MPL-2.0"
|
||
|
description = "GStreamer Rust Relation Meta Plugin"
|
||
|
edition.workspace = true
|
||
|
rust-version.workspace = true
|
||
|
|
||
|
[dependencies]
|
||
|
gst = { workspace = true, features = ["v1_24"] }
|
||
|
gst-rtp = { workspace = true, features = ["v1_24"] }
|
||
|
gst-base = { workspace = true, features = ["v1_24"] }
|
||
|
gst-video = { workspace = true, features = ["v1_24"] }
|
||
|
gst-analytics = { workspace = true }
|
||
|
chrono = { version = "0.4.31", default-features = false }
|
||
|
xmltree = "0.10"
|
||
|
glib = { workspace = true, features = ["v2_62"] }
|
||
|
|
||
|
[lib]
|
||
|
name = "gstrsrelationmeta"
|
||
|
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.9.21"
|
||
|
|
||
|
[package.metadata.capi.header]
|
||
|
enabled = false
|
||
|
|
||
|
[package.metadata.capi.library]
|
||
|
install_subdir = "gstreamer-1.0"
|
||
|
versioning = false
|
||
|
import_library = false
|
||
|
|
||
|
[package.metadata.capi.pkg_config]
|
||
|
requires_private = "gstreamer-1.0, gstreamer-base-1.0, gobject-2.0, glib-2.0, gmodule-2.0, gstreamer-analytics-1.0"
|