FastCGI implementation in OCaml
at main 916 B view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "FastCGI protocol implementation for OCaml using Eio" 4description: 5 "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." 6maintainer: ["OCaml FastCGI Library Authors"] 7authors: ["OCaml FastCGI Library Authors"] 8license: "ISC" 9homepage: "https://github.com/ocaml/ocaml-fastcgi" 10doc: "https://ocaml.github.io/ocaml-fastcgi/" 11bug-reports: "https://github.com/ocaml/ocaml-fastcgi/issues" 12depends: [ 13 "ocaml" 14 "dune" {>= "3.0"} 15 "eio" 16 "cmdliner" 17 "eio_main" 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/ocaml/ocaml-fastcgi.git"