forked from rgrinberg/opium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrock.opam.locked
65 lines (65 loc) · 1.73 KB
/
rock.opam.locked
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
58
59
60
61
62
63
64
65
opam-version: "2.0"
name: "rock"
version: "dev"
synopsis: "Minimalist framework to build extensible HTTP servers and clients"
description:
"Rock is a Unix indpendent API to build extensible HTTP servers and clients. It provides building blocks such as middlewares and handlers (a.k.a controllers)."
maintainer: "Rudi Grinberg <[email protected]>"
authors: ["Rudi Grinberg" "Anurag Soni" "Thibaut Mattio"]
license: "MIT"
homepage: "https://github.com/rgrinberg/opium"
doc: "https://rgrinberg.github.io/opium/"
bug-reports: "https://github.com/rgrinberg/opium/issues"
depends: [
"angstrom" {= "0.15.0"}
"astring" {= "0.8.5" & with-doc}
"base-bytes" {= "base"}
"base-threads" {= "base"}
"base-unix" {= "base"}
"bigarray-compat" {= "1.0.0"}
"bigstringaf" {= "0.7.0"}
"cmdliner" {= "1.0.4" & with-doc}
"conf-libev" {= "4-11"}
"conf-m4" {= "1"}
"conf-pkg-config" {= "1.3"}
"cppo" {= "1.6.6"}
"csexp" {= "1.3.2"}
"dune" {= "2.7.1"}
"dune-configurator" {= "2.7.1"}
"faraday" {= "0.7.2"}
"fpath" {= "0.7.3" & with-doc}
"hmap" {= "0.8.1"}
"httpaf" {= "0.6.6"}
"lwt" {= "5.3.0"}
"mmap" {= "1.1.0"}
"ocaml" {= "4.11.1"}
"ocaml-config" {= "1"}
"ocaml-syntax-shims" {= "1.0.0"}
"ocamlbuild" {= "0.14.0"}
"ocamlfind" {= "1.8.1"}
"ocplib-endian" {= "1.1"}
"odoc" {= "1.5.2" & with-doc}
"re" {= "1.9.0" & with-doc}
"result" {= "1.5"}
"seq" {= "base"}
"sexplib0" {= "v0.14.0"}
"topkg" {= "1.0.3"}
"tyxml" {= "4.4.0" & with-doc}
"uchar" {= "0.0.2" & with-doc}
"uutf" {= "1.0.2" & with-doc}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/rgrinberg/opium.git"