[package]
edition = "2021"
name = "holochain_cli"
version = "0.7.0-dev.17"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provides the `hc` binary, a helpful CLI tool for working with Holochain."
documentation = "https://docs.rs/holochain_cli"
readme = "README.md"
keywords = [
"holochain",
"holo",
]
categories = [
"command-line-utilities",
"development-tools::build-utils",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/holochain/holochain"
[features]
default = [
"wasmer_sys",
"transport-iroh",
]
transport-iroh = ["holochain_cli_sandbox/transport-iroh"]
transport-tx5-backend-go-pion = ["holochain_cli_sandbox/transport-tx5-backend-go-pion"]
wasmer_sys = [
"holochain_cli_sandbox/wasmer_sys",
"holochain_cli_client/wasmer_sys",
]
wasmer_wamr = [
"holochain_cli_sandbox/wasmer_wamr",
"holochain_cli_client/wasmer_wamr",
]
[lib]
name = "holochain_cli"
path = "src/lib.rs"
[[bin]]
name = "hc"
path = "src/bin/hc.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.0"
features = [
"derive",
"cargo",
]
[dependencies.holochain_cli_bundle]
version = "^0.7.0-dev.16"
default-features = false
[dependencies.holochain_cli_client]
version = "^0.7.0-dev.17"
default-features = false
[dependencies.holochain_cli_sandbox]
version = "^0.7.0-dev.17"
default-features = false
[dependencies.holochain_trace]
version = "^0.7.0-dev.1"
[dependencies.lazy_static]
version = "1.4"
[dependencies.tokio]
version = "1.36.0"
features = ["full"]
[lints.clippy]
complexity = "deny"
correctness = "deny"
dbg_macro = "deny"
perf = "deny"
style = "deny"
[lints.clippy.cargo]
level = "allow"
priority = -1
[lints.clippy.nursery]
level = "allow"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.clippy.restriction]
level = "allow"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(build_wasm)",
"cfg(loom)",
]