forked from rgrinberg/opium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopium.opam.locked
92 lines (91 loc) · 2.37 KB
/
opium.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
opam-version: "2.0"
name: "opium"
version: "0.18.0"
synopsis: "Sinatra like web toolkit based on Lwt + Cohttp"
description: """
Opium is a minimalistic library for quickly binding functions to http routes. Its features include (but not limited to):
Middleware system for app independent components
A simple router for matching urls and parsing parameters
Request/Response pretty printing for easier debugging"""
maintainer: "Rudi Grinberg <rudi.grinberg@gmail>"
authors: "Rudi Grinberg"
license: "MIT"
homepage: "https://github.com/rgrinberg/opium"
doc: "https://rgrinberg.github.io/opium/"
bug-reports: "https://github.com/rgrinberg/opium/issues"
depends: [
"alcotest" {= "1.2.2" & with-test}
"alcotest-lwt" {= "1.2.2" & with-test}
"angstrom" {= "0.14.1"}
"astring" {= "0.8.5"}
"base-bytes" {= "base"}
"base-threads" {= "base"}
"base-unix" {= "base"}
"base64" {= "3.4.0"}
"bigarray-compat" {= "1.0.0"}
"bigstringaf" {= "0.6.1"}
"biniou" {= "1.2.1"}
"cmdliner" {= "1.0.4"}
"conf-m4" {= "1"}
"conf-pkg-config" {= "1.3"}
"cppo" {= "1.6.6"}
"csexp" {= "1.3.1"}
"cstruct" {= "5.2.0"}
"dune" {= "2.7.1"}
"dune-configurator" {= "2.7.1"}
"easy-format" {= "1.3.2"}
"eqaf" {= "0.7"}
"faraday" {= "0.7.2"}
"faraday-lwt" {= "0.7.2"}
"faraday-lwt-unix" {= "0.7.2"}
"fmt" {= "0.8.8"}
"hmap" {= "0.8.1"}
"httpaf" {= "0.6.6"}
"httpaf-lwt-unix" {= "0.6.6"}
"logs" {= "0.7.0"}
"lwt" {= "5.3.0"}
"lwt_ppx" {= "2.0.1"}
"magic-mime" {= "1.1.2"}
"mirage-crypto" {= "0.8.5"}
"mmap" {= "1.1.0"}
"mtime" {= "1.2.0"}
"multipart-form-data" {= "0.3.0"}
"ocaml" {= "4.11.1"}
"ocaml-config" {= "1"}
"ocaml-migrate-parsetree" {= "1.7.3"}
"ocamlbuild" {= "0.14.0"}
"ocamlfind" {= "1.8.1"}
"ocplib-endian" {= "1.1"}
"opium_kernel" {= "0.18.0"}
"ppx_derivers" {= "1.2.1"}
"ppx_tools_versioned" {= "5.4.0"}
"ptime" {= "0.8.5"}
"re" {= "1.9.0"}
"result" {= "1.5"}
"seq" {= "base"}
"sexplib0" {= "v0.14.0"}
"stdlib-shims" {= "0.1.0"}
"stringext" {= "1.6.0"}
"topkg" {= "1.0.2"}
"tyxml" {= "4.4.0"}
"uchar" {= "0.0.2"}
"uri" {= "3.1.0"}
"uuidm" {= "0.9.7" & with-test}
"uutf" {= "1.0.2"}
"yojson" {= "1.7.0"}
]
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"