()
| 54 | use std::sync::{Mutex, OnceLock}; |
| 55 | |
| 56 | fn env_lock() -> &'static Mutex<()> { |
| 57 | static ENV_LOCK: OnceLock<Mutex<()>> = OnceLock::new(); |
| 58 | ENV_LOCK.get_or_init(|| Mutex::new(())) |
| 59 | } |
| 60 | |
| 61 | #[test] |
| 62 | fn bare_name_expands_to_community_registry() { |
no outgoing calls