rust-webserver/README.md

14 lines
266 B
Markdown
Raw Normal View History

2023-07-03 21:33:55 +00:00
# rust-webserver
2023-07-03 21:44:57 +00:00
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
```