An OCaml webserver, but the allocating version (vs httpz which doesnt)
at main 41 lines 938 B view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "HTTP/1.1 parser for OCaml 5" 4description: """ 5A high-performance HTTP/1.1 parser and serializer for OCaml 5. Includes 6an Eio-based static file server with Range request support.""" 7maintainer: ["anil@recoil.org"] 8authors: ["Anil Madhavapeddy"] 9license: "ISC" 10homepage: "https://tangled.org/anil.recoil.org/httpzo" 11bug-reports: "https://tangled.org/anil.recoil.org/httpzo/issues" 12depends: [ 13 "dune" {>= "3.21"} 14 "ocaml" {>= "5.1"} 15 "base" 16 "base_bigstring" 17 "eio" {>= "1.0"} 18 "eio_main" 19 "magic-mime" 20 "cmdliner" 21 "xdge" 22 "tomlt" 23 "alcotest" {with-test} 24 "odoc" {with-doc} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://tangled.org/anil.recoil.org/httpzo" 41x-maintenance-intent: ["(latest)"]