mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-10-31 22:59:14 +00:00
33 lines
967 B
TOML
33 lines
967 B
TOML
[package]
|
|
name = "gstreamer-validate"
|
|
authors = ["Philippe Normand <philn@igalia.com>"]
|
|
description = "Rust bindings for GStreamer Validate library"
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
documentation = "https://gstreamer.pages.freedesktop.org/gstreamer-rs/stable/latest/docs/gstreamer_validate/"
|
|
keywords = ["gstreamer", "multimedia", "audio", "video", "gnome"]
|
|
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-validate-sys", path = "sys" }
|
|
glib.workspace = true
|
|
gst = { workspace = true, features = ["v1_22"] }
|
|
|
|
[dev-dependencies]
|
|
gir-format-check = "0.1"
|
|
tempfile = "3"
|
|
|
|
[features]
|
|
default = []
|
|
v1_24 = ["gst/v1_24", "ffi/v1_24"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
|