[chore] Automatic Cargo Cleanup

This commit is contained in:
t.bassi 2025-06-20 15:47:34 +02:00
parent 725252f244
commit 9012235efa
5 changed files with 5 additions and 6 deletions

View file

@ -3,7 +3,7 @@ use cpal::traits::{DeviceTrait, HostTrait, StreamTrait};
use cpal::{Device, Stream, StreamConfig, SampleFormat, SampleRate}; use cpal::{Device, Stream, StreamConfig, SampleFormat, SampleRate};
use std::sync::{Arc, Mutex}; use std::sync::{Arc, Mutex};
use std::time::{Duration, Instant}; use std::time::{Duration, Instant};
use symphonia::core::audio::{AudioBuffer as SymphoniaAudioBuffer, Signal}; use symphonia::core::audio::Signal;
use symphonia::core::codecs::{Decoder, DecoderOptions}; use symphonia::core::codecs::{Decoder, DecoderOptions};
use symphonia::core::formats::{FormatOptions, FormatReader}; use symphonia::core::formats::{FormatOptions, FormatReader};
use symphonia::core::io::MediaSourceStream; use symphonia::core::io::MediaSourceStream;
@ -243,7 +243,7 @@ impl AsioPlayer {
let mss = MediaSourceStream::new(media_source, Default::default()); let mss = MediaSourceStream::new(media_source, Default::default());
// Probe the format // Probe the format
let mut hint = Hint::new(); let hint = Hint::new();
let format_opts = FormatOptions::default(); let format_opts = FormatOptions::default();
let metadata_opts = MetadataOptions::default(); let metadata_opts = MetadataOptions::default();

View file

@ -2,7 +2,7 @@ use anyhow::Result;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use std::fs; use std::fs;
use std::path::PathBuf; use std::path::PathBuf;
use tracing::{info, error}; use tracing::info;
#[derive(Debug, Serialize, Deserialize, Clone)] #[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Config { pub struct Config {

View file

@ -1,6 +1,6 @@
use anyhow::Result; use anyhow::Result;
use reqwest::Client; use reqwest::Client;
use serde::{Deserialize, Serialize}; use serde::Deserialize;
use std::collections::HashMap; use std::collections::HashMap;
use tracing::{info, debug}; use tracing::{info, debug};

View file

@ -1,7 +1,7 @@
use anyhow::Result; use anyhow::Result;
use std::sync::{Arc, Mutex}; use std::sync::{Arc, Mutex};
use tokio::sync::mpsc; use tokio::sync::mpsc;
use tracing::{info, debug, error}; use tracing::error;
use crate::audio::AsioPlayer; use crate::audio::AsioPlayer;
use crate::jellyfin::{JellyfinClient, LibraryItem}; use crate::jellyfin::{JellyfinClient, LibraryItem};

View file

@ -12,7 +12,6 @@ use std::io::{self, Stdout};
use std::sync::mpsc::{channel, Receiver, Sender}; use std::sync::mpsc::{channel, Receiver, Sender};
use std::time::{Duration, Instant}; use std::time::{Duration, Instant};
use std::thread; use std::thread;
use tracing::{debug, error, info};
use crate::jellyfin::{JellyfinClient, LibraryItem}; use crate::jellyfin::{JellyfinClient, LibraryItem};
use crate::player::{Player, PlayerCommand, PlaybackState}; use crate::player::{Player, PlayerCommand, PlaybackState};