In this lab, we will create a basic web service using Rust and the hyper library. Our service will listen on an HTTP port and respond with "Hello, World!"
when accessed.
All applications that are used throughout the entire course are listed under Installs.
How complete the lab:
- Naviagte to the
hyper-server
folder:cd hyper-server
- Run the application using cargo:
cargo run
Done!