package tiny_httpd_lwt

This commit is contained in:
Simon Cruanes 2025-07-02 21:08:29 -04:00
parent ef5e62e75f
commit 8931def188
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 42 additions and 0 deletions

View file

@ -39,3 +39,13 @@
(iostream-camlzip (>= 0.2.1)) (iostream-camlzip (>= 0.2.1))
(logs :with-test) (logs :with-test)
(odoc :with-doc))) (odoc :with-doc)))
(package
(name tiny_httpd_lwt)
(synopsis "Tiny_httpd backend based on lwt.unix for OCaml 5")
(depends
(tiny_httpd (= :version))
(lwt (>= 5.0))
base-unix
(logs :with-test)
(odoc :with-doc)))

32
tiny_httpd_lwt.opam Normal file
View file

@ -0,0 +1,32 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.19"
synopsis: "Tiny_httpd backend based on lwt.unix for OCaml 5"
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}
"lwt" {>= "5.0"}
"base-unix"
"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"