FastCGI implementation in pure Rust.
The focus is on the webserver/client side, but the application/server side could be added in the future.
Developed for FlashRust Webserver with focus on - Vectorized IO and Zero Copy - async IO / tokio - easy HTTP interfaces
Connection
should handle UnixStream and TCPStream transparentlycon_pool
should handle more than one connection :sweat_smile: and load balanceFCGIBody
should not block a RequestIDcon_pool
should reconnect to the FCGI App if a connection is closedConnection
should handle overload error from FCGI appPullRequests are welcome BTW