-
Notifications
You must be signed in to change notification settings - Fork 1
/
simple_httpd.opam
36 lines (36 loc) · 1.11 KB
/
simple_httpd.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
opam-version: "2.0"
version: "1.0-alpha1"
authors: ["Simon Cruanes" "Christophe Rallalli"]
maintainer: "christophe@raffalli.eu"
license: "MIT"
synopsis: "Simple HTTP server using ocaml 5 domains"
build: [
["dune" "build" "@install" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"dune" { >= "2.0" }
"result"
"seq"
"ssl"
"http-cookie"
"polly"
"magic-mime"
"ocaml" { >= "5.03.0" }
"odoc" {with-doc}
"qtest" { >= "2.9" & with-test}
"conf-libcurl" {with-test}
"qcheck" {with-test & >= "0.9" }
"ounit2" {with-test}
"ptime" {with-test}
"camlzip"
]
tags: [ "http" "domain" "server" "simple_httpd" "http_of_dir" "simplehttpserver" ]
homepage: "https://github.com/craff/simple_httpd/"
doc: "https://raffalli.eu/simple_httpd/simple_httpd"
bug-reports: "https://github.com/craff/simple_httpd/issues"
dev-repo: "git+https://github.com/craff/simple_httpd.git"
post-messages: "simple http server, with non blocking IOs and domain. Also
ships with a `http_of_dir` and `vfs_pack` program and a language equivalent to
php."