mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-13 04:51:31 +00:00
4ebec84f5e
Allows us to set all the crates in the main workspace file, so changing their versions or branch is much simpler and reduce the amount of noise in the diff Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1450>
32 lines
937 B
TOML
32 lines
937 B
TOML
[package]
|
|
name = "gstreamer-analytics"
|
|
authors = ["Olivier Crête <olivier.crete@collabora.com>"]
|
|
description = "Rust bindings for GStreamer Analytics library"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
documentation = "https://gstreamer.pages.freedesktop.org/gstreamer-rs/stable/latest/docs/gstreamer_analytics/"
|
|
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"
|
|
gstreamer-analytics-sys.workspace = true
|
|
glib.workspace = true
|
|
gst.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gir-format-check = "0.1"
|
|
|
|
[features]
|
|
default = []
|
|
v1_26 = ["gst/v1_26", "gstreamer-analytics-sys/v1_26"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
|