A simple command line based chat application written in Rust. The project contains two parts: 1. Client, 2. Server. A message can be sent from the client side and the server will receive it.
- First clone the repository
https://github.com/jam3sl1ng/chat_app.gitAnd open two terminals
- Start the server
cd server
cargo run- Start the client
cd client
cargo runType a message on the client terminal and you should see it appear on the server.