aboutsummaryrefslogtreecommitdiff
path: root/stream/src/hls.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-12 13:54:04 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-12 13:54:04 +0200
commite99bde7a00a161ff5dd91eaf1ce546a9d98cef05 (patch)
tree454c2de6fae85720064b35593158e612b2d9fefb /stream/src/hls.rs
parent356b3b8eebf22083c7d9655bb43e141dd0df732c (diff)
downloadjellything-e99bde7a00a161ff5dd91eaf1ce546a9d98cef05.tar
jellything-e99bde7a00a161ff5dd91eaf1ce546a9d98cef05.tar.bz2
jellything-e99bde7a00a161ff5dd91eaf1ce546a9d98cef05.tar.zst
move stream types to own crate; removes a common dep
Diffstat (limited to 'stream/src/hls.rs')
-rw-r--r--stream/src/hls.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/stream/src/hls.rs b/stream/src/hls.rs
index 41b896b..949ddb4 100644
--- a/stream/src/hls.rs
+++ b/stream/src/hls.rs
@@ -6,9 +6,7 @@
use crate::{stream_info, SMediaInfo};
use anyhow::{anyhow, Result};
-use jellycommon::stream::{
- FormatNum, SegmentNum, StreamContainer, StreamSpec, TrackKind, TrackNum,
-};
+use jellystream_types::{FormatNum, SegmentNum, StreamContainer, StreamSpec, TrackKind, TrackNum};
use std::{fmt::Write, ops::Range, sync::Arc};
use tokio::{
io::{AsyncWriteExt, DuplexStream},