portaki-cli 1.0.0

Portaki module CLI (portaki) — init, build, lint, test, and OCI publish
1
2
3
4
5
6
7
8
9
10
11
//! Manifest generation from macro emissions.

pub mod generator;
pub mod migration_bundle;
pub mod operations_bundle;
pub mod validator;

pub use generator::{collect_emissions, find_emissions_dir, generate_manifest, write_manifest};
pub use migration_bundle::write_migration_bundle;
pub use operations_bundle::write_operations_bundle;
pub use validator::validate_manifest;