Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lunacookies/rschat

A toy chat thing in Rust
https://github.com/lunacookies/rschat

Last synced: 16 days ago
JSON representation

A toy chat thing in Rust

Awesome Lists containing this project

README

        

# rschat

`rschat` is a toy unencrypted public chat room thing I created in Rust to help me learn the language. Use `rschat-server [IPV4 ADDR:PORT]` to start a server at the specified location, and then use `rschat-sender [SAME THING]` to send messages and `rschat-viewer [SAME THING]` to view messages. I split the viewer and sender in two to avoid having to deal with async, which significantly simplifies the implementation. Since this is my fist ‘proper’ project in Rust the code is definitely suboptimal, but I learned a lot in the process.