Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lunacookies/rschat
- Owner: lunacookies
- License: isc
- Created: 2019-10-30T04:53:38.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-13T10:37:06.000Z (about 5 years ago)
- Last Synced: 2024-10-22T18:26:08.092Z (2 months ago)
- Language: Rust
- Size: 15.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.