//! System-related things. use crate::foundations::{Dict, Module, Scope, Version}; /// A module with system-related things. pub fn module(inputs: Dict) -> Module { let mut scope = Scope::deduplicating(); scope.define( "version", Version::from_iter([ env!("CARGO_PKG_VERSION_MAJOR").parse::().unwrap(), env!("CARGO_PKG_VERSION_MINOR").parse::().unwrap(), env!("CARGO_PKG_VERSION_PATCH").parse::().unwrap(), ]), ); scope.define("inputs", inputs); Module::new("sys", scope) }