microsandbox 0.3.14

`microsandbox` is the core library for the microsandbox project.
//! Verification of microsandbox runtime dependencies.

use std::path::Path;

use crate::{MicrosandboxError, MicrosandboxResult};
use microsandbox_utils::MSB_BINARY;

//--------------------------------------------------------------------------------------------------
// Functions
//--------------------------------------------------------------------------------------------------

/// Verify that all required runtime dependencies are present.
pub(super) fn verify_installation(bin_dir: &Path, lib_dir: &Path) -> MicrosandboxResult<()> {
    let libkrunfw_name = microsandbox_utils::libkrunfw_filename(std::env::consts::OS);

    for (name, dir) in [(MSB_BINARY, bin_dir), (libkrunfw_name.as_str(), lib_dir)] {
        let path = dir.join(name);
        if !path.exists() {
            return Err(MicrosandboxError::Custom(format!(
                "{name} not found in {}",
                dir.display()
            )));
        }
    }

    Ok(())
}