//! The process environment, as interpolation wants to see it.
//!
//! The only place `std::env` appears in the workspace. Interpolation takes its
//! environment through a trait so that it stays deterministic and testable
//! without touching process state; this is the implementation that does not.
use crate::;
use crate::;
/// Reads `${env:NAME}` from the real environment.
;