mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-10-31 22:58:51 +00:00
26 lines
892 B
TOML
26 lines
892 B
TOML
[package]
|
|
name = "gst-plugin-rspng"
|
|
version = "0.1.0"
|
|
authors = ["Natanael Mojica <neithanmo@gmail.com>"]
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2018"
|
|
description = "An PNG encoder/decoder written in pure Rust"
|
|
|
|
[dependencies]
|
|
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
|
|
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gst_video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gst_check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
png = "0.16.3"
|
|
once_cell = "1"
|
|
parking_lot = "0.11"
|
|
atomic_refcell = "0.1"
|
|
|
|
[lib]
|
|
name = "gstrspng"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|