One of my side projects was about learning more about Tcp & streams. I implemented a "hello world" web server in Rust. I noticed I could get away with very little. The binary size, after small optimizations, ended up being only 300kB. That includes the pages, which are baked into the binary.
I since have been adding more small tricks to limit the size.
GET / [..]
- I only read a bit further to understand if you accept a gzip responseLet's see what other ideas I will have in the future