/****************************************************************************** * @file build.rs * @author Joey Pollack * @date 2025/11/20 (y/m/d) * @modified 2025/11/20 (y/m/d) * @copyright Joseph R Pollack (2025) * @brief ******************************************************************************/ // use std::process::Command; fn main() { let name = env!("CARGO_PKG_NAME"); println!("{} build.rs started...", name); println!("{} build.rs finished", name); }