- Updated `Cargo.toml` to include new dependencies: `ratatui`, `crossterm`, `reqwest`, and `notify-rust`. - Enhanced `main.rs` with a terminal-based chat UI using Ratatui. - Added support for message rendering, input handling, and notifications. - Implemented file download functionality and DM message handling.
22 lines
522 B
TOML
22 lines
522 B
TOML
[package]
|
|
name = "chatclient"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
colog = "1.3.0"
|
|
log = "0.4.22"
|
|
tokio = { version = "1.41.1", features = ["full"] }
|
|
tokio-util = { version = "0.7.12", features = ["codec"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.8.19"
|
|
x25519-dalek = "2.0.0-rc.3"
|
|
aes-gcm = "0.10.3"
|
|
rand = "0.8.5"
|
|
rand_core = "0.6.4"
|
|
crypto = "0.5.1"
|
|
base64 = "0.21"
|
|
ratatui = { version = "0.29.0", features = ["all-widgets"] }
|
|
crossterm = "0.27"
|
|
reqwest = "0.12.15"
|
|
notify-rust = "4"
|