[package]
name = "huddle-server"
version = "1.1.4"
edition = "2021"
description = "Centralized E2E relay + offline mailbox for huddle, designed to run behind a Tor v3 onion service. Treats huddle's wire bytes as opaque ciphertext — it never decrypts."
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", "relay", "tor", "onion", "encryption"]
categories = ["network-programming", "command-line-utilities"]
[[bin]]
name = "huddle-server"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = "0.24"
futures-util = "0.3"
rusqlite = { version = "0.39", features = ["bundled-sqlcipher-vendored-openssl"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
ed25519-dalek = "2"
sha2 = "0.11"
base64 = "0.22"
hex = "0.4"
rand = "0.8"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = "0.24"
futures-util = "0.3"
serde_json = "1"
base64 = "0.22"
tempfile = "3"
huddle-core = { path = "../huddle-core", version = "1.1.4" }