Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'audio/csound/Cargo.toml')
-rw-r--r--audio/csound/Cargo.toml30
1 files changed, 30 insertions, 0 deletions
diff --git a/audio/csound/Cargo.toml b/audio/csound/Cargo.toml
new file mode 100644
index 00000000..ed676228
--- /dev/null
+++ b/audio/csound/Cargo.toml
@@ -0,0 +1,30 @@
+[package]
+name = "gst-plugin-csound"
+version = "0.1.0"
+authors = ["Natanael Mojica <neithanmo@gmail.com>"]
+repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
+license = "LGPL-2.1+"
+edition = "2018"
+description = "An Audio filter plugin based on Csound"
+
+[dependencies]
+glib = { git = "https://github.com/gtk-rs/glib" }
+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 = "0.3"
+
+[lib]
+name = "gstcsound"
+crate-type = ["cdylib", "rlib"]
+path = "src/lib.rs"
+
+[[example]]
+name = "csound-effect"
+path = "examples/effect_example.rs"
+
+[build-dependencies]
+gst-plugin-version-helper = { path = "../../version-helper" }