huddle 0.7.13

Decentralized, terminal-native chat — LAN mDNS, direct IP dial, or invite link, all Megolm end-to-end encrypted.
[package]
name = "huddle"
version = "0.7.13"
edition = "2021"
description = "Decentralized, terminal-native chat — LAN mDNS, direct IP dial, or invite link, 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", "p2p", "libp2p", "encryption"]
categories = ["command-line-utilities", "network-programming"]

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

[dependencies]
huddle-core = { path = "../huddle-core", version = "0.7.13" }
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"
# huddle 0.6: opt-in update detection. ureq is lean (blocking,
# rustls-based) — we call it from a tokio::spawn_blocking task once
# per 24 h and parse the JSON response by substring (no serde_json
# dep needed). The user opts in at first launch; default is off.
ureq = { version = "2", default-features = false, features = ["tls"] }