Skip to content

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Instructions

Build All Components

cargo build

Builds the entire workspace (client, server, and shared library).

Build Individual Components

# Build only the client
cargo build -p client

# Build only the server
cargo build -p server

Run Components

# Run the client
cargo run -p client

# Run the server
cargo run -p server

Build for Release

# Build all components optimized
cargo build --release

# Build specific component optimized
cargo build -p client --release
cargo build -p server --release

Additional Commands

# Check code without building
cargo check

# Run tests
cargo test

# Clean build artifacts
cargo clean

Output Locations

Compiled binaries are located in:

  • Debug: target/debug/client and target/debug/server
  • Release: target/release/client and target/release/server

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages