aboutsummaryrefslogtreecommitdiff
path: root/stream/src/jhls.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-01-30 18:34:09 +0100
committermetamuffin <metamuffin@disroot.org>2025-01-30 18:34:09 +0100
commit9d6411fd92e73c204425f8dd37dc3cf567f604e4 (patch)
treed61d3e0b6bcd803e6ccb6d01669d40a1454ec009 /stream/src/jhls.rs
parentbfc5552a8eba07897c2ed626b49c085d97fdfa0d (diff)
downloadjellything-9d6411fd92e73c204425f8dd37dc3cf567f604e4.tar
jellything-9d6411fd92e73c204425f8dd37dc3cf567f604e4.tar.bz2
jellything-9d6411fd92e73c204425f8dd37dc3cf567f604e4.tar.zst
avoid transitive crate deps by re-export
Diffstat (limited to 'stream/src/jhls.rs')
-rw-r--r--stream/src/jhls.rs15
1 files changed, 9 insertions, 6 deletions
diff --git a/stream/src/jhls.rs b/stream/src/jhls.rs
index 28d383f..79fc5fe 100644
--- a/stream/src/jhls.rs
+++ b/stream/src/jhls.rs
@@ -4,12 +4,15 @@
Copyright (C) 2025 metamuffin <metamuffin.org>
*/
use anyhow::{anyhow, Result};
-use jellybase::{permission::PermissionSetExt, CONF};
-use jellycommon::{
- jhls::JhlsTrackIndex,
- stream::StreamSpec,
- user::{PermissionSet, UserPermission},
- LocalTrack, Node,
+use jellybase::{
+ common::{
+ jhls::JhlsTrackIndex,
+ stream::StreamSpec,
+ user::{PermissionSet, UserPermission},
+ LocalTrack, Node,
+ },
+ permission::PermissionSetExt,
+ CONF,
};
use std::sync::Arc;
use tokio::io::{AsyncWriteExt, DuplexStream};