this repo has no description
1opam-version: "2.0"
2authors: ["Simon Cruanes"]
3maintainer: "simon.cruanes.2007@m4x.org"
4license: "MIT"
5synopsis: "Minimal HTTP server using good old threads"
6build: [
7 ["dune" "build" "@install" "-p" name "-j" jobs]
8 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
9 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
10]
11depends: [
12 "dune" { >= "2.0" }
13 "base-threads"
14 "result"
15 "seq"
16 "ocaml" { >= "4.04.0" }
17 "odoc" {with-doc}
18 "conf-libcurl" {with-test}
19 "qcheck-core" {with-test & >= "0.9" }
20 "ptime" {with-test}
21]
22tags: [ "http" "thread" "server" "tiny_httpd" "http_of_dir" "simplehttpserver" ]
23homepage: "https://github.com/c-cube/tiny_httpd/"
24doc: "https://c-cube.github.io/tiny_httpd/"
25bug-reports: "https://github.com/c-cube/tiny_httpd/issues"
26dev-repo: "git+https://github.com/c-cube/tiny_httpd.git"
27post-messages: "tiny http server, with blocking IOs. Also ships with a `http_of_dir` program."
28url {
29 src: "https://github.com/c-cube/tiny_httpd/archive/v0.13.tar.gz"
30 checksum: [
31 "md5=74b50eb122ac51e59b794179dbaaee13"
32 "sha512=3c3043a176939dc3c95a3a5c2af007ecd32ffb8d211210e0c7ea0d1f61914446f28e60891029506e19c131d3ebd14cc532d581a592ace0130538f58de6e6d9ef"
33 ]
34}