-
Notifications
You must be signed in to change notification settings - Fork 67
/
dune-project
100 lines (89 loc) · 1.82 KB
/
dune-project
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
93
94
95
96
97
98
99
100
(lang dune 2.0)
(name opium)
(generate_opam_files true)
(source
(github rgrinberg/opium))
(authors "Rudi Grinberg" "Anurag Soni" "Thibaut Mattio")
(maintainers "Rudi Grinberg <[email protected]>")
(documentation https://rgrinberg.github.io/opium/)
(license MIT)
(package
(name rock)
(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).")
(depends
(ocaml
(>= 4.08))
(lwt
(>= 5.3.0))
bigstringaf
hmap
httpaf
lwt
sexplib0
(odoc :with-doc)))
(package
(name opium)
(synopsis "OCaml web framework")
(description
"Opium is a web framework for OCaml that provides everything you need to build safe, fast and extensible web applications.")
(depends
(ocaml
(>= 4.08))
(rock
(= :version))
(lwt
(>= 5.3.0))
httpaf-lwt-unix
logs
fmt
mtime
cmdliner
ptime
magic-mime
yojson
tyxml
mirage-crypto
(base64
(>= 3.0.0))
astring
re
uri
multipart-form-data
(result
(>= 1.5))
(odoc :with-doc)
(alcotest :with-test)
(alcotest-lwt :with-test)))
(package
(name opium-testing)
(synopsis "Testing library for Opium")
(description
"A library that provides helpers to easily test your Opium applications.")
(depends
(ocaml
(>= 4.08))
(opium
(= :version))
alcotest
alcotest-lwt
(odoc :with-doc)))
(package
(name opium-graphql)
(synopsis "Run GraphQL servers with Opium")
(description
"This package allows you to execute Opium requests against GraphQL schemas built with `graphql`.")
(depends
(ocaml
(>= 4.08))
(opium
(= :version))
(lwt
(>= 5.3.0))
graphql
graphql-lwt
(crunch :build)
(alcotest :with-test)
(alcotest-lwt :with-test)))