[package]
name = "huddle"
version.workspace = true
edition.workspace = true
description = "Terminal-native chat over a self-hosted Tor onion relay (opt-in LAN mDNS / direct dial), all Megolm end-to-end encrypted."
license.workspace = true
repository.workspace = true
homepage.workspace = true
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 = { workspace = true }
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"
zeroize = "1"
ureq = { version = "2", default-features = false, features = ["tls", "socks-proxy"] }