mirror of
https://github.com/nestriness/warp.git
synced 2025-12-11 09:25:39 +02:00
50 lines
2.0 KiB
TOML
50 lines
2.0 KiB
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]
|
|
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_18"] }
|
|
gst-app = { package = "gstreamer-app", 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"] }
|
|
gst-pbutils = { package = "gstreamer-pbutils", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_20"] }
|
|
gst-sys = { package = "gstreamer-sys", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
|
toml_datetime = "0.6.5"
|
|
url = "2.5.0"
|
|
|
|
quinn = "0.10"
|
|
webtransport-quinn = "0.6.1"
|
|
rustls = { version = "0.21", features = ["dangerous_configuration"] }
|
|
rustls-native-certs = "0.6"
|
|
rustls-pemfile = "1"
|
|
tokio = {version="1.35.1", features = ["full"]}
|
|
env_logger = "0.9"
|
|
log = { version = "0.4", features = ["std"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
anyhow = { version = "1", features = ["backtrace"] }
|
|
mp4 = "0.13"
|
|
moq-transport = { git = "https://github.com/kixelated/moq-rs", version = "0.2.0" }
|
|
serde_json = "1"
|
|
rfc6381-codec = "0.1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
gst-plugin-mp4 = { git = "https://github.com/sdroege/gst-plugin-rs", version = "0.12.0-alpha.1" }
|
|
gst-plugin-fmp4 = { git = "https://github.com/sdroege/gst-plugin-rs", version = "0.12.0-alpha.1" }
|
|
gstreamer-audio = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", version = "0.22.0" }
|
|
# uuid = "1.7.0"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
clap_mangen = "0.2"
|
|
url = "2"
|
|
|
|
[dependencies.uuid]
|
|
version = "1.7.0"
|
|
features = [
|
|
"v4", # Lets you generate random UUIDs
|
|
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
|
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
|
|
]
|