🗑️ Remove unused imports and format code

- Comment out `use std::simd::*` in pmoaudio as it's unused and modules import their own SIMD
- Remove `Instant` from imports in track_metadata.rs (unused)
- Reorder anyhow import to match Rust convention (`anyhow, Result` → `Result`) and remove unused imports
- Improve XML response logging readability with line breaks in iterator chain
+ Refactor `get()` method to multi-line for clarity and consistency
This commit is contained in:
2026-04-04 00:57:33 +02:00
parent 34260e7cbd
commit 77d0d73ed7
3 changed files with 13 additions and 8 deletions

View File

@@ -78,7 +78,7 @@ async fn main() {
- **RwLock** : Pour partage concurrent du compteur [`TimerNode`]
"#]
#[cfg(feature = "simd")]
use std::simd::*;
// use std::simd::*; // Not actually used in this file, modules import their own simd
mod audio_chunk;
mod audio_segment;