2019-10-13 10:21:09 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-claxon"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Ruben Gonzalez <rgonzalez@fluendo.com>"]
|
|
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
description = "Claxon FLAC Decoder Plugin"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
|
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
|
|
gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
|
|
gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
|
|
claxon = { version = "0.4" }
|
|
|
|
byte-slice-cast = "~0.3.4"
|
|
|
|
atomic_refcell = "0.1"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "gstclaxon"
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2020-04-03 23:26:41 +00:00
|
|
|
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }
|