fastcgi-sdk 0.0.5

FastCGI SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
rust-fastcgi-sdk

A safe Rust binding to the FastCGI SDK. For examples, see the shipped binaries.

The current version uses the C library of the FastCGI SDK. The plan is to
rewrite it in Rust completely, removing this dependency and improving the
interface.

The binding has near zero overhead compared to the C library. The differences
are:

 1. It does one extra llocation per request, for ABI portability reasons.
 2. It does unnecessary `strlen` calls, because of unfortunate limitations in
    the standard library `CStr` implementation.