1 2 3
use std::sync::{LazyLock, Mutex}; pub static ENV_LOCK: LazyLock<Mutex<()>> = LazyLock::new(|| Mutex::new(()));