Skip to content

Commit

Permalink
feat: add TcpListener & parse proto
Browse files Browse the repository at this point in the history
This is a start; implementing the whole protocol will take time
and will be done one part after another. For now I get the first
frame and I'm happy with that.

Signed-off-by: Martichou <[email protected]>
  • Loading branch information
Martichou committed Feb 13, 2024
1 parent 34b599b commit 76c28b7
Show file tree
Hide file tree
Showing 16 changed files with 1,760 additions and 20 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Install Protoc
uses: arduino/setup-protoc@v3
- run: cargo build
2 changes: 2 additions & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Install Protoc
uses: arduino/setup-protoc@v3
- run: cargo clippy --all-features --all
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target
proto_comp/
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"rust-analyzer.showUnlinkedFileNotification": false
}
Loading

0 comments on commit 76c28b7

Please sign in to comment.