Skip to main content

zoi_lua/api/
mod.rs

1//! Lua APIs for Zoi.
2//!
3//! This module contains the implementations of the various APIs exposed to
4//! Lua scripts, organized into submodules by functionality.
5
6/// Archive manipulation utilities (zip, tar, etc.).
7pub mod archive;
8/// Cryptographic utilities (hash verification, PGP).
9pub mod crypto;
10/// File download utilities with progress reporting.
11pub mod download;
12/// Filesystem and staging utilities.
13pub mod fs;
14/// HTTP and Git-forge integration.
15pub mod http;
16/// Core Package DSL and lifecycle functions.
17pub mod lifecycle;
18/// Data parsing utilities (JSON, YAML, TOML).
19pub mod parse;
20/// System command execution and patching.
21pub mod system;