gst-plugins-rs/tutorial/Cargo.toml

27 lines
617 B
TOML
Raw Permalink Normal View History

[package]
name = "gst-plugin-tutorial"
version.workspace = true
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository.workspace = true
2022-03-14 08:22:53 +00:00
license = "MIT OR Apache-2.0"
edition.workspace = true
rust-version.workspace = true
description = "GStreamer Rust Tutorial Plugin"
[dependencies]
gst.workspace = true
gst-base.workspace = true
gst-video.workspace = true
gst-audio.workspace = true
byte-slice-cast = "1.0"
2018-02-21 12:36:37 +00:00
num-traits = "0.2"
once_cell.workspace = true
[lib]
name = "gstrstutorial"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper.workspace = true