Simple text chat Rust implementation - #21
Open
yourarj wants to merge 24 commits into
Open
Conversation
Signed-off-by: Arjun <[email protected]> - Implemented initial version of binary protocol - checksum functionality not implemented for the sake of simplicity Date: Sat Nov 22 17:36:12 2025 +0000 On branch core_protocol Changes to be committed: new file: .clippy.toml new file: .editorconfig new file: .rustfmt.toml new file: Cargo.toml new file: chat-core/Cargo.toml new file: chat-core/src/lib.rs new file: chat-core/src/protocol.rs new file: developer-tools/git/hooks/commit-msg new file: developer-tools/git/hooks/pre-commit new file: developer-tools/git/template/.gitmessage new file: rust-toolchain.toml
feat(protocol): implemented binary protocol
COMPLTED: communication successful across clients PENDING: units, finishing, non published events in some cases Signed-off-by: Arjun <[email protected]> Date: Tue Nov 25 03:17:02 2025 +0000 On branch chat-server Changes to be committed: new file: .vscode/settings.json modified: Cargo.toml new file: chat-client/Cargo.toml new file: chat-client/src/client.rs new file: chat-client/src/lib.rs new file: chat-client/src/main.rs new file: chat-core/src/error.rs modified: chat-core/src/lib.rs new file: chat-core/src/transport_layer.rs new file: chat-server/Cargo.toml new file: chat-server/src/broadcast.rs new file: chat-server/src/lib.rs new file: chat-server/src/main.rs new file: chat-server/src/server.rs
User left the chatroom notification fixed Signed-off-by: Arjun <[email protected]>
Client now handles graceful shutdown Signed-off-by: Arjun <[email protected]>
Signed-off-by: Arjun <[email protected]> Date: Tue Nov 25 18:22:57 2025 +0000 On branch chat-server
Signed-off-by: Arjun <[email protected]> Date: Tue Nov 25 18:49:17 2025 +0000 On branch chat-server
Signed-off-by: Arjun <[email protected]> Date: Tue Nov 25 20:10:33 2025 +0000 On branch chat-server
Signed-off-by: Arjun <[email protected]> Date: Wed Nov 26 15:45:48 2025 +0000 On branch chat-server
Signed-off-by: Arjun <[email protected]> Date: Wed Nov 26 15:57:17 2025 +0000 On branch main
Signed-off-by: Arjun <[email protected]> Date: Wed Nov 26 16:19:11 2025 +0000 On branch github-actions
fix(ci): fixed ci
Signed-off-by: Arjun <[email protected]> Date: Wed Nov 26 16:33:27 2025 +0000 On branch chat-server Changes to be committed: modified: .github/workflows/chat-test.yml modified: Cargo.toml
Signed-off-by: Arjun <[email protected]> Date: Wed Nov 26 23:03:52 2025 +0000 On branch chat-server
Signed-off-by: Arjun <[email protected]>
Signed-off-by: Arjun <[email protected]> Date: Thu Nov 27 04:10:52 2025 +0000 On branch chat-server
Signed-off-by: Arjun <[email protected]>
Signed-off-by: Arjun <[email protected]>
Signed-off-by: Arjun <[email protected]>
Signed-off-by: Arjun <[email protected]>
feat(chat): functional requirements of chat met
- Added embeded video - Added features and outofscope sections Signed-off-by: Arjun <[email protected]> Date: Fri Nov 28 13:00:13 2025 +0000 On branch demo-video Changes to be committed: modified: README.md new file: media/final-demo.mp4 Signed-off-by: Arjun <[email protected]>
Signed-off-by: Arjun <[email protected]>
docs(readme): updated readme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🪶 Features
🫣 Out of Scope