Added Cargo Workspace

This commit is contained in:
Elias Stepanik 2025-04-03 12:31:05 +02:00
parent 0d5a94da23
commit 7b5d57fc48
2 changed files with 6 additions and 0 deletions

3
.gitignore vendored
View File

@ -11,6 +11,9 @@ client/target/
server/Cargo.lock
client/Cargo.lock
Cargo.lock
target/
# These are backup files generated by rustfmt
client/**/*.rs.bk
server/**/*.rs.bk

3
Cargo.toml Normal file
View File

@ -0,0 +1,3 @@
[workspace]
resolver = "2"
members = ["client", "server"]