2023-02-02 00:48:12 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-gopbuffer"
|
|
|
|
version.workspace = true
|
|
|
|
authors = ["Matthew Waters <matthew@centricular.com>"]
|
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Store complete groups of pictures at a time"
|
|
|
|
repository.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
gst = { workspace = true, features = ["v1_18"] }
|
|
|
|
gst-video = { workspace = true, features = ["v1_18"] }
|
|
|
|
once_cell.workspace = true
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "gstgopbuffer"
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gst-app = { workspace = true, features = ["v1_18"] }
|
|
|
|
gst-check = { workspace = true, features = ["v1_18"] }
|
|
|
|
|
|
|
|
[build-dependencies]
|
2024-07-16 16:12:16 +00:00
|
|
|
gst-plugin-version-helper.workspace = true
|
2023-02-02 00:48:12 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
static = []
|
|
|
|
capi = []
|
|
|
|
|
|
|
|
[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, gstreamer-base-1.0, gstreamer-audio-1.0, gstreamer-video-1.0, gobject-2.0, glib-2.0, gmodule-2.0"
|