scroll-chat 0.1.0

A secure terminal chat over SSH - host or join chatrooms with end-to-end encryption
[package]
name = "scroll-chat"
version = "0.1.0"
edition = "2021"
description = "A secure terminal chat over SSH - host or join chatrooms with end-to-end encryption"
authors = ["Arnab Sengupta"]
license = "MIT"
repository = "https://github.com/asengupta07/scroll"
homepage = "https://github.com/asengupta07/scroll"
readme = "README.md"
keywords = ["ssh", "chat", "terminal", "tui", "encrypted"]
categories = ["command-line-utilities", "network-programming"]

[dependencies]
# Async runtime
tokio = { version = "1", features = ["full", "signal"] }
futures = "0.3"
async-trait = "0.1"

# SSH
russh = "0.40"
russh-keys = "0.40"

# TUI
ratatui = "0.26"
crossterm = { version = "0.27", features = ["event-stream"] }

# CLI
clap = { version = "4.4", features = ["derive"] }

# Security
argon2 = "0.5"
rand = "0.8"

# Utilities
anyhow = "1.0"
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.6", features = ["v4"] }
dirs = "5.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
unicode-width = "0.1"
libc = "0.2"

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