gst-plugins-rs/gst-plugin-flv/Cargo.toml

26 lines
694 B
TOML
Raw Normal View History

[package]
name = "gst-plugin-flv"
2018-09-09 23:02:31 +00:00
version = "0.4.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
edition = "2018"
[dependencies]
url = "1.1"
glib = { version = "0.7", features = ["subclassing"] }
gstreamer = { version = "0.13", features = ["subclassing"] }
gstreamer-base = { version = "0.13" }
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"
byteorder = "1.0"
lazy_static = "1.0"
smallvec = "0.6"
[lib]
name = "gstrsflv"
crate-type = ["cdylib"]
path = "src/lib.rs"