use std::{collections::HashMap, path::PathBuf};
#[derive(Debug, PartialEq, Default, Clone)]
pub struct RustMluaBuildSpec {
pub modules: HashMap<String, PathBuf>,
pub target_path: PathBuf,
pub default_features: bool,
pub features: Vec<String>,
pub cargo_extra_args: Vec<String>,
pub include: HashMap<PathBuf, PathBuf>,
}