-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpiaf.opam
49 lines (49 loc) · 1.17 KB
/
piaf.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
37
38
39
40
41
42
43
44
45
46
47
48
49
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "An HTTP library with HTTP/2 support written entirely in OCaml"
description:
"Piaf is an HTTP library and webserver written entirely in OCaml."
maintainer: ["Antonio Nuno Monteiro <[email protected]>"]
authors: ["Antonio Nuno Monteiro <[email protected]>"]
license: "BSD-3-clause"
homepage: "https://github.com/anmonteiro/piaf"
bug-reports: "https://github.com/anmonteiro/piaf/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "5.1"}
"dune-configurator"
"logs"
"eio-ssl" {>= "0.3.0"}
"magic-mime"
"ssl"
"uri"
"ipaddr"
"httpun-eio" {>= "0.2.0"}
"gluten-eio"
"h2-eio" {>= "0.13.0"}
"httpun-ws" {>= "0.2.0"}
"pecu" {>= "0.4"}
"prettym"
"unstrctrd" {>= "0.2"}
"eio_main" {>= "1.0"}
"dune-site" {with-test}
"alcotest" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/anmonteiro/piaf.git"