mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-10-31 22:58:51 +00:00
b9f8ce9995
There is no way to dynamically ask Cargo to build static or dynamic lib so we have to build both and pick the one we care when doing the meson processing. Fix #88
29 lines
867 B
TOML
29 lines
867 B
TOML
[package]
|
|
name = "gst-plugin-gif"
|
|
version = "0.6.0"
|
|
authors = ["Markus Ebner <info@ebner-markus.de>"]
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2018"
|
|
description = "GStreamer GIF plugin"
|
|
|
|
[dependencies]
|
|
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gif = "0.11"
|
|
atomic_refcell = "0.1"
|
|
once_cell = "1"
|
|
|
|
[lib]
|
|
name = "gstgif"
|
|
crate-type = ["cdylib", "rlib", "staticlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[[example]]
|
|
name = "testvideosrc2gif"
|
|
path = "examples/testvideosrc2gif.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|