mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-15 14:52:04 +00:00
22 lines
565 B
TOML
22 lines
565 B
TOML
[package]
|
|
name = "gst-plugin-file"
|
|
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"
|
|
|
|
[dependencies]
|
|
url = "2"
|
|
glib = { version = "0.10" }
|
|
gstreamer = { version = "0.16" }
|
|
gstreamer-base = { version = "0.16" }
|
|
lazy_static = "1.0"
|
|
|
|
[lib]
|
|
name = "gstrsfile"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../../version-helper", version = "0.2" }
|