Following along with The Rust Programming Language's Final Project of building a multithreaded webserver.
See my blog on this topic.
Rust and Cargo installed
Compile from source, run executable as you would any other
git clone https://github.com/billvanleeuwen424/hello-webserver-rust.git
cd hello-webserver-rust
cargo build --release
# do what you want here, but you could just
cargo run
# or take the executable and run it
mv target/release/hello-webserver wherever/you/want
./wherever/you/want/hello-webserver-rust
`
## License
This project is licensed under the terms of the GNU GENERAL PUBLIC LICENSE. - see the LICENSE.md file for details