make data struct ready for impl

This commit is contained in:
highflowey 2024-08-23 02:37:11 +03:30
parent 16b3cde97e
commit 62fd0d00b1

View file

@ -1,14 +1,15 @@
use crate::{library::StandardLibrary, luaurc::RequireAlias};
use mlua::prelude::*;
use std::{collections::HashMap, sync::Arc};
use tokio::sync::Mutex;
use std::{collections::HashMap, path::PathBuf, sync::Arc};
use tokio::sync::{broadcast::Sender, Mutex};
/// The private struct that's stored in mlua's app data container
#[derive(Debug, Default)]
struct RequireContextData<'a> {
std: HashMap<&'a str, HashMap<&'a str, Box<dyn StandardLibrary>>>,
std_cache: HashMap<RequireAlias, LuaRegistryKey>,
cache: Arc<Mutex<HashMap<&'a str, LuaRegistryKey>>>,
cache: Arc<Mutex<HashMap<PathBuf, LuaRegistryKey>>>,
pending: Arc<Mutex<HashMap<PathBuf, Sender<()>>>>,
}
#[derive(Debug)]