holochain_cli_bundle 0.2.5-rc.1

DNA and hApp bundling functionality for the `hc` Holochain CLI utility
Documentation
[package]
name = "holochain_cli_bundle"
version = "0.2.5-rc.1"
description = "DNA and hApp bundling functionality for the `hc` Holochain CLI utility"
license = "Apache-2.0"
homepage = "https://github.com/holochain/holochain"
documentation = "https://docs.rs/holochain_cli_bundle"
authors = [ "Holochain Core Dev Team <devcore@holochain.org>" ]
keywords = [ "holochain", "holo" ]
categories = [ "command-line-utilities", "development-tools::build-utils", "filesystem" ]
    edition = "2021"

    [[bin]]
    name = "hc-app"
    path = "src/bin/hc-app.rs"

    [[bin]]
    name = "hc-dna"
    path = "src/bin/hc-dna.rs"

    [dependencies]
holochain_wasmer_host = "=0.0.92"
wasmer = "=4.2.4"
futures = "0.3"
anyhow = "1.0"
clap = { version = "4.0", features = [ "derive" ] }
holochain_serialized_bytes = "=0.0.53"
holochain_types = { version = "^0.2.5-rc.1", path = "../holochain_types" }
holochain_util = { path = "../holochain_util", features = ["backtrace"], version = "^0.2.4"}
mr_bundle = {version = "^0.2.5-rc.0", path = "../mr_bundle"}
serde = { version = ">= 1.0, <= 1.0.166", features = [ "derive" ] }
serde_bytes = "0.11"
serde_yaml = "0.9"
thiserror = "1.0.22"
tracing = "0.1"
tokio = { version = "1.27", features = [ "full" ] }

[dev-dependencies]
assert_cmd = "1.0"
matches = "0.1"
predicates = "1.0"
tempfile = "3"
serde_json = "1.0"
jsonschema = "0.17"
walkdir = "2"

[features]
sqlite-encrypted = [
    "holochain_types/sqlite-encrypted",
]
sqlite = [
    "holochain_types/sqlite",
]