[package]
name = "huddle"
version = "1.2.2"
edition = "2021"
description = "Terminal-native chat over a self-hosted Tor onion relay (opt-in LAN mDNS / direct dial), all Megolm end-to-end encrypted."
license = "MIT OR Apache-2.0"
repository = "https://github.com/richer-richard/huddle"
homepage = "https://github.com/richer-richard/huddle"
readme = "README.md"
keywords = ["chat", "tui", "tor", "onion", "encryption"]
categories = ["command-line-utilities", "network-programming"]
[[bin]]
name = "huddle"
path = "src/main.rs"
[features]
default = []
arti = ["huddle-core/arti"]
[dependencies]
huddle-core = { path = "../huddle-core", version = "1.2.2" }
libp2p = { version = "0.56", features = ["ed25519"] }
ratatui = "0.30"
crossterm = "0.29"
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] }
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
dirs = "6"
qrcode = "0.14"
base64 = "0.22"
ureq = { version = "2", default-features = false, features = ["tls", "socks-proxy"] }