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] {with-doc} 9 ["dune" "runtest" "-p" name] {with-test} 10] 11depends: [ 12 "dune" { >= "1.1" } # for now, since qtest needs old dune 13 "base-threads" 14 "ocaml" { >= "4.03.0" } 15 "odoc" {with-doc} 16 "qtest" { >= "2.9" & with-test} 17 "qcheck" {with-test & >= "0.9" & < "0.14"} 18] 19tags: [ "http" "thread" "server" "tiny_httpd" "http_of_dir" "simplehttpserver" ] 20homepage: "https://github.com/c-cube/tiny_httpd/" 21doc: "https://c-cube.github.io/tiny_httpd/" 22bug-reports: "https://github.com/c-cube/tiny_httpd/issues" 23dev-repo: "git+https://github.com/c-cube/tiny_httpd.git" 24post-messages: "tiny http server, with blocking IOs. Also ships with a `http_of_dir` program." 25url { 26 src: "https://github.com/c-cube/tiny_httpd/archive/0.4.tar.gz" 27 checksum: [ 28 "md5=ccd3b0d0276861d89c00cc8c6797f3de" 29 "sha512=48cc7ef660d648583b1bb4be37c545d2902ab2065ddefacf54bcf5fdc73c836aa0b3071e4c89e483a0382d1c49ee0dbd42f07c6849cc4dfcf6b1a5f09793f99e" 30 ] 31}