mirror of
https://github.com/nestriness/warp.git
synced 2025-12-13 02:15:42 +02:00
22 lines
772 B
TOML
22 lines
772 B
TOML
[package]
|
|
name = "warp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
url = "2"
|
|
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_18"] }
|
|
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_18"] }
|
|
gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_18"] }
|
|
wayland-display-core = { path = "../wayland-display-core" }
|
|
moq-transport = { path = "../moq-transport" }
|
|
tracing = "0.1.37"
|
|
once_cell = "1.17.0"
|
|
tracing-subscriber = "0.3.16"
|
|
|
|
[[bin]]
|
|
name = "warp"
|
|
path = "main.rs"
|