aion-package
Archive validation, content hashing, and namespacing for Aion workflow packages. The crate loads .aion archives, validates their manifest and compiled BEAM entries, computes stable content hashes, and derives deployed module names for engine registration.
Install
[]
= "0.1.0"
Key public types
Packagerepresents a validated in-memory.aionarchive.PackageBuilderassembles package archives for tests and tooling.Manifest,ManifestVersion, andDeclaredActivitydescribe archive metadata.BeamModule,BeamSet,ContentHash, andWorkflowVersionidentify package contents.deployed_name,deployed_names, andParsedDeployedNamehandle module namespacing.
Minimal usage
use Package;
let package = load_from_path?;
println!;
# Ok::