holochain_cli_bundle 0.7.0-dev.20

DNA and hApp bundling functionality for the `hc` Holochain CLI utility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(missing_docs)]

//! This crate provides a set of utilities for working with Holochain bundles.

mod cli;
mod error;
mod init;
mod packing;

pub use cli::{
    app_pack_recursive, bundled_dnas_workdir_locations, get_app_name, get_dna_name,
    get_web_app_name, web_app_pack_recursive, HcAppBundle, HcDnaBundle, HcWebAppBundle,
};
pub use packing::{expand_bundle, expand_unknown_bundle, pack};