An OCaml webserver, but the allocating version (vs httpz which doesnt)
1(lang dune 3.21)
2(name httpzo)
3
4(generate_opam_files true)
5
6(license ISC)
7(authors "Anil Madhavapeddy")
8(maintainers "anil@recoil.org")
9(source (tangled anil.recoil.org/httpzo))
10
11(package
12 (name httpzo)
13 (synopsis "HTTP/1.1 parser for OCaml 5")
14 (description
15 "A high-performance HTTP/1.1 parser and serializer for OCaml 5. Includes
16an Eio-based static file server with Range request support.")
17 (depends
18 (ocaml (>= 5.1))
19 base
20 base_bigstring
21 (eio (>= 1.0))
22 eio_main
23 magic-mime
24 cmdliner
25 xdge
26 tomlt
27 (alcotest :with-test)))