2020-06-09 01:06:49 +00:00
|
|
|
[package]
|
|
|
|
name = "gstreamer-controller"
|
|
|
|
authors = ["Alexey Galakhov <agalakhov@gmail.com>", "Sebastian Dröge <sebastian@centricular.com>"]
|
|
|
|
description = "Rust bindings for GStreamer Controller library"
|
2022-03-14 08:21:49 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-06-09 01:06:49 +00:00
|
|
|
readme = "README.md"
|
2021-05-29 16:00:50 +00:00
|
|
|
documentation = "https://gstreamer.pages.freedesktop.org/gstreamer-rs/stable/latest/docs/gstreamer_controller/"
|
2020-06-09 01:06:49 +00:00
|
|
|
keywords = ["gstreamer", "multimedia", "audio", "video", "gnome"]
|
2024-02-03 08:52:46 +00:00
|
|
|
version.workspace = true
|
|
|
|
categories.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2020-06-09 01:06:49 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-19 17:27:50 +00:00
|
|
|
ffi = { package = "gstreamer-controller-sys", path = "sys" }
|
2024-02-03 09:08:41 +00:00
|
|
|
glib.workspace = true
|
|
|
|
gst.workspace = true
|
2020-06-09 01:06:49 +00:00
|
|
|
|
2021-12-03 16:14:55 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
gir-format-check = "0.1"
|
|
|
|
|
2020-06-09 01:06:49 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
2022-04-07 08:22:39 +00:00
|
|
|
v1_16 = ["gst/v1_16", "ffi/v1_16"]
|
2020-11-21 18:50:21 +00:00
|
|
|
v1_18 = ["gst/v1_18", "ffi/v1_18", "v1_16"]
|
2020-11-13 22:33:50 +00:00
|
|
|
v1_20 = ["gst/v1_20", "ffi/v1_20", "v1_18"]
|
2022-03-15 13:04:08 +00:00
|
|
|
v1_22 = ["gst/v1_22", "ffi/v1_22", "v1_20"]
|
2023-04-06 12:35:43 +00:00
|
|
|
v1_24 = ["gst/v1_24", "ffi/v1_24", "v1_22"]
|
2020-06-09 01:06:49 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2023-08-08 14:46:20 +00:00
|
|
|
all-features = true
|
2023-08-08 07:42:17 +00:00
|
|
|
rustc-args = ["--cfg", "docsrs"]
|
2023-07-17 16:05:02 +00:00
|
|
|
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
|