I had to refactor

This commit is contained in:
Wanjohi
2023-12-15 10:03:30 +03:00
parent f99766b42a
commit 0791fe7e06
7 changed files with 763 additions and 479 deletions

View File

@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
anyhow = { version = "1", features = ["backtrace"] }
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-app = { package = "gstreamer-app", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_18"] }
@@ -20,6 +20,10 @@ chrono = "0.4.31"
m3u8-rs = "5.0.4"
isobmff = { git = "https://github.com/LMinJae/isobmff-rs", version = "0.1.0" }
bytes = "1.5.0"
once_cell = "1"
# Async stuff
tokio = { version = "1", features = ["full"] }
# QUIC
quinn = "0.10"
@@ -35,6 +39,7 @@ rustls-pemfile = "1"
mp4 = "0.14.0"
moq-transport = { git = "https://github.com/kixelated/moq-rs", version = "0.2.0" }
rand = "0.8.5"
[lib]
name = "gstmoq"