···10101111This prints the HTTP response body to stdout.
12121313+To enable baseline HTTPS support:
1414+1515+```bash
1616+cargo run --features https -- https://example.com
1717+```
1818+1319## Notes
14201521- `no_std` + `no_main` binary using Linux libc syscalls
1616-- Uses `reqwless` with `default-features = false` (HTTP only)
2222+- Uses `reqwless` with `default-features = false`
2323+- HTTPS is optional via `--features https` and currently uses `TlsVerify::None` (insecure baseline)
1724- Uses fixed-size stack buffers for request/response and output chunks
1825- Performs best-effort low-allocation operation (no `String`/`Vec` in app code)