rust-webserver/README.md
2023-07-03 16:44:57 -05:00

14 lines
266 B
Markdown

# rust-webserver
Very basic multithreaded TCP server in Rust.
See `src/main.rs`. Server will listen for a certain number of connections on a
given TCP port, and then gracefully exit.
This project is taken from The Rust Book.
**Run:**
```
cargo run --release
```