-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdune-project
71 lines (59 loc) · 1.2 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
(lang dune 2.9)
(generate_opam_files true)
(name guardian)
(version 0.3.2)
(license GPL-2.0-or-later)
(authors
"Department of Economics, University of Zurich"
"John Christopher McAlpine")
(maintainers "[email protected]")
(homepage "https://github.com/uzh/guardian")
(source
(github uzh/guardian))
(bug_reports "https://github.com/uzh/guardian/issues")
(documentation "https://uzh.github.io/guardian")
(package
(name guardian)
(synopsis "Role-based access control for OCaml")
(description
"Defined actors can access targets according to specified rules (allowed actions: CRUD).")
(depends
(caqti-driver-mariadb
(>= 2.0.1))
(caqti-lwt
(>= 2.0.1))
(containers
(>= 3.6))
(containers-data
(>= 3.6))
(logs
(>= 0.7.0))
(lwt
(>= 5.6.1))
(lwt_ppx
(>= 2.1.0))
(mariadb
(>= 1.1.6))
(ocaml
(>= 4.12.0))
(ppx_deriving
(>= 5.2.1))
(ppx_deriving_yojson
(>= 3.6.1))
(ppx_fields_conv
(>= v0.16.0))
(ppx_sexp_conv
(>= 0.15.1))
(ppx_string
(>= v0.16.0))
(uri
(>= 4.2.0))
(uuidm
(>= 0.9.8))
(yojson
(>= 2.0.2))
;; Documentation
(odoc :with-doc)
;; Test/Dev dependencies
(alcotest-lwt :with-test)))
(implicit_transitive_deps false)