gst-plugins-rs/generic/file/Cargo.toml

24 lines
729 B
TOML
Raw Normal View History

[package]
name = "gst-plugin-file"
2019-07-07 10:20:15 +00:00
version = "0.6.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
description = "Rust File Plugin"
2020-11-22 14:24:55 +00:00
edition = "2018"
[dependencies]
2019-07-24 10:05:55 +00:00
url = "2"
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
2020-11-22 14:24:55 +00:00
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
once_cell = "1.0"
[lib]
name = "gstrsfile"
crate-type = ["cdylib", "rlib", "staticlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../../version-helper" }