//! Re-exports the build target triple into a crate-readable env var.
//!
//! Cargo sets the `TARGET` env var for **build scripts only** — it is not
//! visible to normal crate compilation, so `option_env!("TARGET")` in the
//! library source is always `None` (and `target_triple` in solve reports
//! came out `"unknown"`). A build script *does* see `TARGET`, so re-export
//! it under our own name for `option_env!("POUNCE_TARGET_TRIPLE")` to read.