fmt: apply rustfmt across slice-2 use-statement drift
Some checks failed
CI / fmt (pull_request) Successful in 56s
CI / clippy (pull_request) Failing after 28s
CI / test (1.85) (pull_request) Failing after 27s
CI / test (stable) (pull_request) Failing after 28s
CI / deny (pull_request) Failing after 27s

This commit is contained in:
opencode controller
2026-07-01 00:18:04 -04:00
parent c89d65c621
commit 2bc9877105
9 changed files with 23 additions and 23 deletions

View File

@@ -26,8 +26,8 @@ use std::net::SocketAddr;
use futures_util::{SinkExt, StreamExt};
use rutster_tap::protocol::{
decode_envelope, encode_audio_out, encode_bye, encode_error, encode_hello, DecodedPayload,
HelloPayload,
DecodedPayload, HelloPayload, decode_envelope, encode_audio_out, encode_bye, encode_error,
encode_hello,
};
use tokio::sync::oneshot;
use tokio::task::JoinHandle;
@@ -195,8 +195,8 @@ mod tests {
// `PcmFrame` is re-exported by `rutster-tap` from `rutster-media` (spec
// §3.1 — one canonical home). Test consumes the re-export rather than
// adding `rutster-media` as a second path dep on this crate.
use rutster_tap::protocol::{encode_audio_in, encode_bye, encode_hello};
use rutster_tap::PcmFrame;
use rutster_tap::protocol::{encode_audio_in, encode_bye, encode_hello};
#[tokio::test]
async fn echo_round_trips_one_audio_frame() {