From c29b76143c5097fff435e7a457e4d843ec8fab1f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bennet=20Ble=C3=9Fmann?= Date: Fri, 26 Jul 2024 00:13:49 +0200 Subject: [PATCH] fix copy-past error --- src/machine/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machine/mod.rs b/src/machine/mod.rs index 9110ae9c..cfba5666 100644 --- a/src/machine/mod.rs +++ b/src/machine/mod.rs @@ -148,7 +148,7 @@ mod libraries { use indexmap::IndexMap; use std::sync::LazyLock; - static LIBRARIES: LazyLock> = OnceLock::new(|| { + static LIBRARIES: LazyLock> = LazyLock::new(|| { let mut m = IndexMap::new(); include!(concat!(env!("OUT_DIR"), "/libraries.rs")); -- 2.54.0