forked from anmonteiro/piaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
piaf.opam
57 lines (57 loc) · 1.76 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
50
51
52
53
54
55
56
57
# 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" {>= "2.8"}
"ocaml" {>= "5.0"}
"logs"
"eio-ssl" {dev}
"magic-mime"
"ssl" {dev}
"uri"
"ipaddr"
"httpaf-eio" {dev}
"gluten-eio" {dev}
"h2-eio" {dev}
"websocketaf" {dev}
"multipart_form" {dev}
"eio_main" {dev}
"dune-site" {with-test}
"alcotest" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/anmonteiro/piaf.git"
pin-depends: [
[ "gluten.dev" "git+https://github.com/anmonteiro/gluten.git" ]
[ "gluten-eio.dev" "git+https://github.com/anmonteiro/gluten.git" ]
[ "httpaf.dev" "git+https://github.com/anmonteiro/httpaf.git" ]
[ "httpaf-eio.dev" "git+https://github.com/anmonteiro/httpaf.git" ]
[ "hpack.dev" "git+https://github.com/anmonteiro/ocaml-h2.git" ]
[ "h2.dev" "git+https://github.com/anmonteiro/ocaml-h2.git" ]
[ "h2-eio.dev" "git+https://github.com/anmonteiro/ocaml-h2.git" ]
[ "ssl.dev" "git+https://github.com/savonet/ocaml-ssl.git" ]
[ "eio-ssl.dev" "git+https://github.com/anmonteiro/eio-ssl.git" ]
[ "websocketaf.dev" "git+https://github.com/anmonteiro/websocketaf.git" ]
[ "multipart_form.dev" "git+https://github.com/anmonteiro/multipart_form.git" ]
]