gst-plugins-rs/video/flavors/Cargo.toml

29 lines
913 B
TOML
Raw Normal View History

[package]
name = "gst-plugin-flavors"
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"
edition = "2018"
description = "Rust FLV Plugin"
[dependencies]
glib = { git = "https://github.com/gtk-rs/gtk-rs" }
2020-11-22 17:21:45 +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" }
num-rational = { version = "0.3", default-features = false, features = [] }
2020-11-03 09:44:26 +00:00
nom = "6"
flavors = { git = "https://github.com/rust-av/flavors" }
2020-10-13 09:38:09 +00:00
muldiv = "1.0"
byteorder = "1.0"
2020-11-22 17:21:45 +00:00
once_cell = "1.0"
2019-11-20 22:43:55 +00:00
smallvec = "1.0"
[lib]
name = "gstrsflv"
crate-type = ["cdylib", "rlib", "staticlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../../version-helper" }