diff options
author | Teddy Wing | 2020-06-27 17:15:10 +0200 |
---|---|---|
committer | Teddy Wing | 2020-06-27 17:15:10 +0200 |
commit | a99b8b984180d7089006ef9f92259984be4f74ef (patch) | |
tree | 11b75d991a6d2759c611ff36f70d440e0cc68cc1 /Cargo.toml | |
parent | 23f23e7ee0540c1078db038c3b3cad93b312200a (diff) | |
download | fastcgi-conduit-a99b8b984180d7089006ef9f92259984be4f74ef.tar.bz2 |
Create a wrapper struct for `fastcgi::Request`
Trying out the Conduit API, as it seems like nice interface that I can
plug the FastCGI server into.
To do this, I need a server type, and some way to convert a
`fastcgi::Request` into a `conduit::Request`. Doing this with a new
local type that I can use to implement `conduit::RequestExt`.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,9 +1,11 @@ [package] -name = "fcgi" +name = "fastcgi-conduit" version = "0.0.1" edition = "2018" [dependencies] +conduit = "0.9.0-alpha.2" fastcgi = "1.0.0" http = "0.2.1" Inflector = "0.11.4" +snafu = "0.6.8" |