https://github.com/ginglis13/spidey-rs
A rewrite of the infamous Spidey webserver from Notre Dame's Systems Programming Course in Rust.
https://github.com/ginglis13/spidey-rs
Last synced: about 1 year ago
JSON representation
A rewrite of the infamous Spidey webserver from Notre Dame's Systems Programming Course in Rust.
- Host: GitHub
- URL: https://github.com/ginglis13/spidey-rs
- Owner: ginglis13
- Created: 2021-06-03T15:01:31.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-11T21:13:11.000Z (almost 5 years ago)
- Last Synced: 2025-02-08T05:44:13.437Z (over 1 year ago)
- Language: Rust
- Homepage:
- Size: 1.27 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spidey-rs
A rewrite of the infamous [Spidey webserver](https://www3.nd.edu/~pbui/teaching/cse.20289.sp18/project.html) from Notre Dame's [Systems Programming Course](https://www3.nd.edu/~pbui/teaching/cse.20289.sp18/) in Rust.
Unix only. Uses the [nix crate](https://docs.rs/nix/0.13.0/nix/unistd/fn.fork.html) 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`