2017-09-08 08:51:27 +00:00
|
|
|
[package]
|
|
|
|
name = "tutorials"
|
2024-02-03 08:52:46 +00:00
|
|
|
version.workspace = true
|
2019-10-22 13:36:32 +00:00
|
|
|
license = "MIT"
|
2017-09-08 08:51:27 +00:00
|
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
|
2024-02-03 08:52:46 +00:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2017-09-08 08:51:27 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-03 09:08:41 +00:00
|
|
|
glib.workspace = true
|
|
|
|
gst.workspace = true
|
|
|
|
gst-audio.workspace = true
|
|
|
|
gst-video = { workspace = true, optional = true }
|
|
|
|
gst-app.workspace = true
|
|
|
|
gst-pbutils.workspace = true
|
2020-10-13 09:28:19 +00:00
|
|
|
byte-slice-cast = "1"
|
2020-10-10 07:52:15 +00:00
|
|
|
anyhow = "1"
|
2024-01-29 11:01:51 +00:00
|
|
|
termion = { version = "3", optional = true }
|
2023-10-30 08:56:39 +00:00
|
|
|
async-channel = "2.0.0"
|
|
|
|
futures = "0.3"
|
2017-09-08 08:51:27 +00:00
|
|
|
|
2021-07-12 10:13:34 +00:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-08-27 17:44:07 +00:00
|
|
|
cocoa = "0.26"
|
2022-12-11 21:09:54 +00:00
|
|
|
objc = "0.2.7"
|
2021-07-12 10:13:34 +00:00
|
|
|
|
2021-01-07 21:49:18 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "basic-tutorial-13"
|
|
|
|
required-features = ["termion"]
|
2021-04-26 14:01:18 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "playback-tutorial-1"
|
|
|
|
required-features = ["termion"]
|
2021-11-06 14:43:15 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "playback-tutorial-2"
|
|
|
|
required-features = ["termion"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "playback-tutorial-5"
|
|
|
|
required-features = ["termion", "gst-video"]
|