From abd0365c16ab2e65773f4c8d3b782c2e44128dc5 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 13 Jun 2026 20:45:15 +0200 Subject: chore(treewide): Remove glob imports --- crates/turtle/src/atuin_pty_proxy/capture.rs | 4 +++- crates/turtle/src/atuin_pty_proxy/osc133.rs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'crates/turtle/src/atuin_pty_proxy') diff --git a/crates/turtle/src/atuin_pty_proxy/capture.rs b/crates/turtle/src/atuin_pty_proxy/capture.rs index efba3c0b..55bc1788 100644 --- a/crates/turtle/src/atuin_pty_proxy/capture.rs +++ b/crates/turtle/src/atuin_pty_proxy/capture.rs @@ -199,7 +199,9 @@ fn estimated_rows(bytes: &[u8], cols: u16) -> u16 { #[cfg(test)] mod tests { - use super::*; + use crate::atuin_pty_proxy::capture::render_plain_text; + + use super::{Arc, AtomicU16, CommandCapture, CommandCaptureTracker, MAX_OUTPUT_CAPTURE_BYTES}; fn tracker(cols: u16) -> CommandCaptureTracker { CommandCaptureTracker::new(Arc::new(AtomicU16::new(cols))) diff --git a/crates/turtle/src/atuin_pty_proxy/osc133.rs b/crates/turtle/src/atuin_pty_proxy/osc133.rs index b0cf0f0a..f2a796f1 100644 --- a/crates/turtle/src/atuin_pty_proxy/osc133.rs +++ b/crates/turtle/src/atuin_pty_proxy/osc133.rs @@ -362,7 +362,7 @@ fn parse_param(param: &[u8]) -> Param { #[cfg(test)] mod tests { - use super::*; + use super::{BEL, Event, LocatedEvent, Param, Params, Parser, Zone}; /// Collect all events from a single `push` call. fn parse_events(data: &[u8]) -> Vec { -- cgit v1.3.1