zlayer_builder/windows/mod.rs
1//! Windows-specific build-time helpers.
2//!
3//! This module hosts validation and tooling that only applies when the target
4//! OS is Windows. The Linux / macOS builder paths bypass it entirely.
5//!
6//! # Submodules
7//!
8//! - [`deps`] — static checks on `RUN` instructions that catch
9//! `choco install` / `winget install` usage on `nanoserver` base images,
10//! which lack `PowerShell` and therefore cannot run either package manager.
11
12pub mod deps;