2018-01-13 18:05:35 +00:00
|
|
|
[package]
|
|
|
|
name = "gst-plugin-tutorial"
|
2024-02-05 13:35:07 +00:00
|
|
|
version.workspace = true
|
2018-01-13 18:05:35 +00:00
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
2024-02-05 13:35:07 +00:00
|
|
|
repository.workspace = true
|
2022-03-14 08:22:53 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2024-02-05 13:35:07 +00:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2022-10-23 09:13:23 +00:00
|
|
|
description = "GStreamer Rust Tutorial Plugin"
|
2018-01-13 18:05:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-05 13:35:07 +00:00
|
|
|
gst.workspace = true
|
|
|
|
gst-base.workspace = true
|
|
|
|
gst-video.workspace = true
|
|
|
|
gst-audio.workspace = true
|
2020-10-13 09:38:02 +00:00
|
|
|
byte-slice-cast = "1.0"
|
2018-02-21 12:36:37 +00:00
|
|
|
num-traits = "0.2"
|
2024-02-05 13:35:07 +00:00
|
|
|
once_cell.workspace = true
|
2018-01-13 18:05:35 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "gstrstutorial"
|
2020-11-26 15:07:41 +00:00
|
|
|
crate-type = ["cdylib", "rlib"]
|
2018-01-13 18:05:35 +00:00
|
|
|
path = "src/lib.rs"
|
2019-06-03 10:53:58 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-02-05 13:35:07 +00:00
|
|
|
gst-plugin-version-helper.workspace = true
|