FastCGI implementation in OCaml
1(lang dune 3.0)
2
3(name fastcgi)
4
5(generate_opam_files true)
6
7(source
8 (github ocaml/ocaml-fastcgi))
9
10(authors "OCaml FastCGI Library Authors")
11
12(maintainers "OCaml FastCGI Library Authors")
13
14(license ISC)
15
16(documentation https://ocaml.github.io/ocaml-fastcgi/)
17
18(package
19 (name fastcgi)
20 (depends
21 ocaml
22 dune
23 eio
24 cmdliner
25 eio_main)
26 (synopsis "FastCGI protocol implementation for OCaml using Eio")
27 (description "A type-safe implementation of the FastCGI protocol for OCaml using the Eio effects-based IO library. Supports all three FastCGI roles: Responder, Authorizer, and Filter."))