From 9440af6d2490bdcba94fdd838abeda6d0ef62626 Mon Sep 17 00:00:00 2001 From: Matthew Jackson Date: Tue, 28 Apr 2026 21:39:50 -0700 Subject: [PATCH] fix CI: make scsi::linux pub(crate) for integration test access --- src/scsi/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scsi/mod.rs b/src/scsi/mod.rs index d0c3e4e..0d5c142 100644 --- a/src/scsi/mod.rs +++ b/src/scsi/mod.rs @@ -6,7 +6,7 @@ //! - `windows.rs` — SPTI (SCSI Pass-Through Interface) #[cfg(target_os = "linux")] -mod linux; +pub(crate) mod linux; #[cfg(target_os = "macos")] mod macos; #[cfg(target_os = "windows")]