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 "qtest" { >= "2.9" & with-test}
19 "conf-libcurl" {with-test}
20 "qcheck" {with-test & >= "0.9" }
21 "ounit2" {with-test}
22 "ptime" {with-test}
23]
24tags: [ "http" "thread" "server" "tiny_httpd" "http_of_dir" "simplehttpserver" ]
25homepage: "https://github.com/c-cube/tiny_httpd/"
26doc: "https://c-cube.github.io/tiny_httpd/"
27bug-reports: "https://github.com/c-cube/tiny_httpd/issues"
28dev-repo: "git+https://github.com/c-cube/tiny_httpd.git"
29post-messages: "tiny http server, with blocking IOs. Also ships with a `http_of_dir` program."
30url {
31 src: "https://github.com/c-cube/tiny_httpd/archive/v0.12.tar.gz"
32 checksum: [
33 "md5=9ceac00dcd214ad562446b81abbf6734"
34 "sha512=99b4d01d4f4d138b122c689b8b3bc5043fc386d6686675311f625bf5fec72c6e1a7513712b00889fe17cd392b8c475440d4f89ee46392aff32ac6ccc39cefe09"
35 ]
36}