22 lines
564 B
TOML
22 lines
564 B
TOML
[package]
|
|
name = "gst"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
error-stack = "0.6"
|
|
futures = "0.3.31"
|
|
futures-lite = "2.6.1"
|
|
glib = "0.21.5"
|
|
gstreamer = { version = "0.24.4", features = ["v1_18"] }
|
|
gstreamer-app = { version = "0.24.4", features = ["v1_18"] }
|
|
gstreamer-video = { version = "0.24.4", features = ["v1_18"] }
|
|
thiserror = "2.0"
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
|
|
[dev-dependencies]
|
|
smol = "2.0.2"
|
|
tracing-subscriber = "0.3.22"
|