gst-plugins-rs/net/ndi/Cargo.toml

34 lines
1.2 KiB
TOML
Raw Normal View History

2018-04-09 05:53:04 +00:00
[package]
name = "gst-plugin-ndi"
2018-09-18 11:25:24 +00:00
version = "1.0.0"
authors = ["Ruben Gonzalez <rubenrua@teltek.es>", "Daniel Vilar <daniel.peiteado@teltek.es>", "Sebastian Dröge <sebastian@centricular.com>"]
2018-09-18 11:25:24 +00:00
repository = "https://github.com/teltek/gst-plugin-ndi"
2018-04-10 16:50:44 +00:00
license = "LGPL"
description = "NewTek NDI Plugin"
edition = "2018"
2018-04-09 05:53:04 +00:00
[dependencies]
glib = { git = "https://github.com/gtk-rs/gtk-rs-core"}
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-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
byte-slice-cast = "1"
once_cell = "1.0"
byteorder = "1.0"
atomic_refcell = "0.1"
2018-04-09 05:53:04 +00:00
[build-dependencies]
gst-plugin-version-helper = { path = "../../version-helper" }
[features]
default = ["interlaced-fields", "sink"]
2021-02-23 10:37:24 +00:00
interlaced-fields = ["gst/v1_16", "gst-video/v1_16"]
sink = ["gst/v1_18", "gst-base/v1_18"]
advanced-sdk = []
2018-04-09 05:53:04 +00:00
[lib]
name = "gstndi"
crate-type = ["cdylib"]
path = "src/lib.rs"