mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-01 23:08:42 +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
30 lines
1 KiB
TOML
30 lines
1 KiB
TOML
[package]
|
|
name = "gst-plugin-csound"
|
|
version = "0.6.0"
|
|
authors = ["Natanael Mojica <neithanmo@gmail.com>"]
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
|
license = "LGPL-2.1-or-later"
|
|
edition = "2018"
|
|
description = "An Audio filter plugin based on Csound"
|
|
|
|
[dependencies]
|
|
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
|
|
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gst_base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gst_audio = { package = "gstreamer-audio", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gst_check = { package = "gstreamer-check", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
csound = "0.1.8"
|
|
once_cell = "1.0"
|
|
byte-slice-cast = "1.0"
|
|
|
|
[lib]
|
|
name = "gstcsound"
|
|
crate-type = ["cdylib", "rlib", "staticlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[[example]]
|
|
name = "csound-effect"
|
|
path = "examples/effect_example.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path = "../../version-helper" }
|