tiny_httpd/tiny_httpd_eio.opam
Simon Cruanes d40f87f07b
feat: tiny_httpd_eio library
provides a tiny_httpd server that relies on Eio for non-blocking
sockets and for concurrency using eio fibers.
2025-06-06 22:26:23 -04:00

31 lines
631 B
Text

# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.19"
synopsis: "Use eio for tiny_httpd"
maintainer: ["c-cube"]
authors: ["c-cube"]
license: "MIT"
homepage: "https://github.com/c-cube/tiny_httpd/"
bug-reports: "https://github.com/c-cube/tiny_httpd/issues"
depends: [
"dune" {>= "3.2"}
"tiny_httpd" {= version}
"eio"
"logs" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/c-cube/tiny_httpd.git"