From ae995f220318615c4d4fbb56536a7664aa61993f Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Sun, 8 Jan 2023 00:57:22 -0700 Subject: [PATCH] attic: Only build testing module on Unix --- attic/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/attic/src/lib.rs b/attic/src/lib.rs index 43b0f26..05c1f52 100644 --- a/attic/src/lib.rs +++ b/attic/src/lib.rs @@ -24,6 +24,7 @@ pub mod nix_store; pub mod signing; #[cfg(feature = "tokio")] pub mod stream; +#[cfg(target_family = "unix")] pub mod testing; #[cfg(feature = "tokio")] pub mod util;