-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsimple_httpd.opam
More file actions
44 lines (44 loc) · 1.06 KB
/
simple_httpd.opam
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
37
38
39
40
41
42
43
44
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Simple HTTP server using ocaml 5 domains"
maintainer: ["Christophe" "Raffalli"]
authors: ["Christophe" "Raffalli"]
license: "MIT"
tags: ["http" "thread" "server" "simple_httpd" "http_of_dir"]
homepage: "https://raffalli.eu/simple_httpd/"
doc: "https://raffalli.eu/simple_httpd/simple_httpd"
bug-reports: "https://github.com/craff/simple_httpd/issues"
depends: [
"dune" {>= "3.0"}
"pacomb" {>= "1.4.0"}
"ssl" {>= "0.7.0"}
"polly" {>= "0.4.0"}
"magic-mime" {<= "1.3.0"}
"ocaml" {>= "5.3.0"}
"camlzip" {>= "1.11"}
"digestif"
"base64" {>= "3.5.0"}
"cppo" {build}
"yojson" {build}
"odoc" {with-doc}
"conf-openssl" {with-test}
"qtest" {>= "2.9" & with-test}
"conf-libcurl" {with-test}
"qcheck" {with-test & >= "0.9"}
"csv" {with-test}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/craff/simple_httpd.git"