Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History
 
 

rust

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Rust Chat Server

This is a simple chat server written in Rust. It uses the tokio.

Running the server

  • cargo run

Features

  • Login (without password. It is enough to send the username)
  • Send message and dispatch to the correct user
  • Store in memory the users with the status (online/offline)
  • Store in memory the off-line messages when the user is not online
  • Send the off-line messages when the user logs in
  • Check if the user is already logged in
  • Check if the destination user exists