mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-14 14:21:02 +00:00
1ae57967ae
Simplifies the code a bit and less state to carry around.
25 lines
868 B
TOML
25 lines
868 B
TOML
[package]
|
|
name = "gst-plugin-rav1e"
|
|
version = "0.6.0"
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
|
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs"
|
|
license = "MIT/Apache-2.0"
|
|
description = "rav1e AV1 Encoder Plugin"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gstreamer-video = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
rav1e = { git = "https://github.com/xiph/rav1e.git", default-features=false }
|
|
atomic_refcell = "0.1"
|
|
lazy_static = "1.0"
|
|
|
|
[lib]
|
|
name = "gstrav1e"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
|