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 "ocaml" { >= "4.04.0" }
15 "odoc" {with-doc}
16 "qtest" { >= "2.9" & with-test}
17 "qcheck" {with-test & >= "0.9" }
18 "ounit2" {with-test}
19]
20tags: [ "http" "thread" "server" "tiny_httpd" "http_of_dir" "simplehttpserver" ]
21homepage: "https://github.com/c-cube/tiny_httpd/"
22doc: "https://c-cube.github.io/tiny_httpd/"
23bug-reports: "https://github.com/c-cube/tiny_httpd/issues"
24dev-repo: "git+https://github.com/c-cube/tiny_httpd.git"
25post-messages: "tiny http server, with blocking IOs. Also ships with a `http_of_dir` program."
26url {
27 src: "https://github.com/c-cube/tiny_httpd/archive/v0.8.tar.gz"
28 checksum: [
29 "md5=fec41ef42263443e234cc166e571f826"
30 "sha512=1f8bd150e21b66c491b881d3eb689d8aeedbaa88cb95aa7c3c7a49f1deaa2021d76a00769a306008b33e0e3166dfc0693e96f74ec2b2e8e5a20a218e1e99d819"
31 ]
32}