[package]
name = "scroll-chat"
version = "0.2.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]
tokio = { version = "1", features = ["full", "signal"] }
futures = "0.3"
async-trait = "0.1"
russh = "0.40"
russh-keys = "0.40"
crossterm = { version = "0.27", features = ["event-stream"] }
clap = { version = "4.4", features = ["derive"] }
argon2 = "0.5"
rand = "0.8"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
libc = "0.2"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[[bin]]
name = "scrollchat"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"