mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-10-31 22:59:14 +00:00
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "gstreamer-gl-egl"
|
|
authors = [
|
|
"Sebastian Dröge <sebastian@centricular.com>",
|
|
"Víctor M. Jáquez L. <vjaquez@igalia.com>"
|
|
]
|
|
description = "Rust bindings for GStreamer GL library (EGL support)"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
documentation = "https://gstreamer.pages.freedesktop.org/gstreamer-rs/stable/latest/docs/gstreamer_gl_egl/"
|
|
version.workspace = true
|
|
categories.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
ffi = { package = "gstreamer-gl-egl-sys", path = "sys", version = "0.22" }
|
|
glib.workspace = true
|
|
gst.workspace = true
|
|
gst-gl.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gir-format-check = "0.1"
|
|
|
|
[features]
|
|
default = []
|
|
v1_16 = ["gst/v1_16", "gst-gl/v1_16", "ffi/v1_16"]
|
|
v1_18 = ["gst/v1_18", "gst-gl/v1_18", "ffi/v1_18", "v1_16"]
|
|
v1_20 = ["gst/v1_20", "gst-gl/v1_20", "ffi/v1_20", "v1_18"]
|
|
v1_22 = ["gst/v1_22", "gst-gl/v1_22", "ffi/v1_22", "v1_20"]
|
|
v1_24 = ["gst/v1_24", "gst-gl/v1_24", "ffi/v1_24", "v1_22"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
|