//! Parses HADRIS_FAT_CACHE_SIZE at build time and sets rustc-env FAT_CACHE_WINDOW_SIZE_BYTES.
//! The crate reads it with env!("FAT_CACHE_WINDOW_SIZE_BYTES").parse(). Example: 8MiB → 8388608.
//! Panics if the value is set and not a valid non-negative integer.
use env;