fix copy-past error

This commit is contained in:
Bennet Bleßmann
2024-07-26 00:13:49 +02:00
parent 3ad4b05a97
commit c29b76143c

View File

@@ -148,7 +148,7 @@ mod libraries {
use indexmap::IndexMap;
use std::sync::LazyLock;
static LIBRARIES: LazyLock<IndexMap<&'static str, &'static str>> = OnceLock::new(|| {
static LIBRARIES: LazyLock<IndexMap<&'static str, &'static str>> = LazyLock::new(|| {
let mut m = IndexMap::new();
include!(concat!(env!("OUT_DIR"), "/libraries.rs"));