2016-12-23 17:04:32 +00:00
|
|
|
[package]
|
2020-04-05 14:40:55 +00:00
|
|
|
name = "gst-plugin-flavors"
|
2019-07-07 10:20:15 +00:00
|
|
|
version = "0.6.0"
|
2016-12-23 17:04:32 +00:00
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
2018-11-26 10:52:09 +00:00
|
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
|
2017-02-16 15:52:27 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2019-01-03 21:53:06 +00:00
|
|
|
edition = "2018"
|
2019-06-03 10:53:58 +00:00
|
|
|
description = "Rust FLV Plugin"
|
2016-12-23 17:04:32 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-11-04 18:46:07 +00:00
|
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
2019-09-09 07:45:06 +00:00
|
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2019-01-03 21:53:06 +00:00
|
|
|
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2020-06-18 10:07:09 +00:00
|
|
|
num-rational = { version = "0.3", default-features = false, features = [] }
|
2019-09-30 08:23:29 +00:00
|
|
|
nom = "5"
|
2020-04-16 12:03:29 +00:00
|
|
|
flavors = { git = "https://github.com/rust-av/flavors" }
|
2020-10-13 09:38:09 +00:00
|
|
|
muldiv = "1.0"
|
2019-01-03 21:53:06 +00:00
|
|
|
byteorder = "1.0"
|
|
|
|
lazy_static = "1.0"
|
2019-11-20 22:43:55 +00:00
|
|
|
smallvec = "1.0"
|
2016-12-23 17:04:32 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "gstrsflv"
|
2020-04-24 12:02:12 +00:00
|
|
|
crate-type = ["cdylib", "rlib"]
|
2016-12-23 17:04:32 +00:00
|
|
|
path = "src/lib.rs"
|
2019-06-03 10:53:58 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2020-04-05 14:38:52 +00:00
|
|
|
gst-plugin-version-helper = { path="../../version-helper" }
|