gstreamer-rs/gstreamer-app/Cargo.toml

43 lines
1.4 KiB
TOML
Raw Normal View History

2017-08-01 13:18:50 +00:00
[package]
name = "gstreamer-app"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
description = "Rust bindings for GStreamer App library"
2022-03-14 08:21:49 +00:00
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://gstreamer.pages.freedesktop.org/gstreamer-rs/stable/latest/docs/gstreamer_app/"
2017-08-01 13:18:50 +00:00
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
2017-08-01 13:18:50 +00:00
[dependencies]
futures-core = "0.3"
futures-sink = "0.3"
2017-08-01 13:18:50 +00:00
libc = "0.2"
ffi = { package = "gstreamer-app-sys", path = "sys" }
glib.workspace = true
gst.workspace = true
gst-base.workspace = true
2017-08-01 13:18:50 +00:00
[dev-dependencies]
futures-util = { version = "0.3", features = ["sink"] }
futures-executor = "0.3"
gir-format-check = "0.1"
2017-08-01 13:18:50 +00:00
[features]
default = []
v1_16 = ["gst/v1_16", "gst-base/v1_16", "ffi/v1_16"]
v1_18 = ["gst/v1_18", "gst-base/v1_18", "ffi/v1_18", "v1_16"]
v1_20 = ["gst/v1_20", "gst-base/v1_20", "ffi/v1_20", "v1_18"]
v1_22 = ["gst/v1_22", "gst-base/v1_22", "ffi/v1_22", "v1_20"]
v1_24 = ["gst/v1_24", "gst-base/v1_24", "ffi/v1_24", "v1_22"]
v1_26 = ["gst/v1_26", "gst-base/v1_26", "ffi/v1_26", "v1_24"]
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]