Eio HTTP server with static file serving and route handlers
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

opam: migrate 14 hand-maintained packages to dune-generated

Moves package metadata into dune-project for kdf, monopam-info,
ocaml-ax25, ocaml-collision, ocaml-crypto (4 subpackages), ocaml-csv,
ocaml-respond, ocaml-sdnv, ocaml-tls (2 subpackages), ocaml-vec3, and
ocaml-x509, and flags each .opam with the generated-by-dune header.

Running dune build after the ocaml-toml build break is resolved will
regenerate the .opam files from dune-project and reveal any
canonical-form drift in a separate commit.

+21
+20
dune-project
··· 1 1 (lang dune 3.21) 2 2 (name respond) 3 + (license ISC) 4 + (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") 5 + (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 6 + 7 + (generate_opam_files true) 8 + 9 + (package 10 + (name respond) 11 + (synopsis "Eio HTTP server with static file serving and route handlers") 12 + (description 13 + "Serves files from a document root with MIME detection, ETag conditional requests, and directory index. Supports custom route handlers for API endpoints. Reuses HTTP types from requests.") 14 + (tags (org:blacksun network http eio)) 15 + (depends 16 + (ocaml (>= 5.1)) 17 + (dune (>= 3.0)) 18 + http 19 + eio 20 + logs 21 + magic-mime 22 + fmt))
+1
respond.opam
··· 1 + # This file is generated by dune, edit dune-project instead 1 2 opam-version: "2.0" 2 3 synopsis: "Eio HTTP server with static file serving and route handlers" 3 4 description: """