Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 675 Bytes

README.md

File metadata and controls

21 lines (11 loc) · 675 Bytes

spidey-rs

A rewrite of the infamous Spidey webserver from Notre Dame's Systems Programming Course in Rust.

Unix only. Uses the nix crate in order to use the fork system call, so this won't run on Windows. This is intentional as the original project only compiled for Unix.

Build and Run

cargo build

All logs:

RUST_LOG=spidey_rs ./target/debug/spidey-rs

Just info (and error) logs:

RUST_LOG=info ./target/debug/spidey-rs

You can also just run with

RUST_LOG=spidey_rs cargo run