hcterm 0.4.0-dev.21

A terminal for Holochain
[package]
name = "hcterm"
version = "0.4.0-dev.21"
description = "A terminal for Holochain"
license = "Apache-2.0"
homepage = "https://github.com/holochain/holochain"
documentation = "https://docs.rs/holochain_terminal"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
edition = "2021"
default-run = "hcterm"

[[bin]]
name = "hcterm"
path = "src/main.rs"

# reminder - do not use workspace deps
[dependencies]
anyhow = "1.0"
crossterm = "0.28.0"
ratatui = "0.28"
clap = { version = "4", features = ["derive"] }
url = "2"
once_cell = "1"
chrono = "0.4"
holo_hash = { version = "^0.4.0-dev.11", path = "../holo_hash", features = [
  "encoding",
] }
kitsune_p2p_types = { version = "^0.4.0-dev.12", path = "../kitsune_p2p/types" }
kitsune_p2p_bin_data = { version = "^0.4.0-dev.11", path = "../kitsune_p2p/bin_data" }
kitsune_p2p_bootstrap_client = { version = "^0.4.0-dev.13", path = "../kitsune_p2p/bootstrap_client" }
holochain_util = { version = "^0.4.0-dev.4", path = "../holochain_util" }
holochain_conductor_api = { version = "^0.4.0-dev.21", path = "../holochain_conductor_api" }
holochain_websocket = { version = "^0.4.0-dev.21", path = "../holochain_websocket" }
holochain_types = { version = "^0.4.0-dev.21", path = "../holochain_types" }
tokio = { version = "1.36.0", features = ["full"] }

[lints]
workspace = true