FastCGI implementation in OCaml
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 "odoc" {with-doc}
17]
18build: [
19 ["dune" "subst"] {dev}
20 [
21 "dune"
22 "build"
23 "-p"
24 name
25 "-j"
26 jobs
27 "@install"
28 "@runtest" {with-test}
29 "@doc" {with-doc}
30 ]
31]
32dev-repo: "git+https://github.com/ocaml/ocaml-fastcgi.git"