2016-12-23 17:04:32 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-flv"
|
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]
|
2019-07-24 10:05:55 +00:00
|
|
|
url = "2"
|
2018-11-04 18:46:07 +00:00
|
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
2019-01-03 21:53:06 +00:00
|
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["subclassing"] }
|
|
|
|
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
2018-09-06 11:19:47 +00:00
|
|
|
num-rational = { version = "0.2", default-features = false, features = [] }
|
2019-02-06 12:48:50 +00:00
|
|
|
nom = "4.0"
|
2017-08-18 09:52:17 +00:00
|
|
|
flavors = {git = "https://github.com/rust-av/flavors.git"}
|
2018-05-11 07:37:34 +00:00
|
|
|
muldiv = "0.2"
|
2019-01-03 21:53:06 +00:00
|
|
|
byteorder = "1.0"
|
|
|
|
lazy_static = "1.0"
|
|
|
|
smallvec = "0.6"
|
2016-12-23 17:04:32 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "gstrsflv"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
path = "src/lib.rs"
|
2019-06-03 10:53:58 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
|