-
Notifications
You must be signed in to change notification settings - Fork 1
/
guardian.opam
53 lines (53 loc) · 1.38 KB
/
guardian.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.3.2"
synopsis: "Role-based access control for OCaml"
description:
"Defined actors can access targets according to specified rules (allowed actions: CRUD)."
maintainer: ["[email protected]"]
authors: [
"Department of Economics, University of Zurich" "John Christopher McAlpine"
]
license: "GPL-2.0-or-later"
homepage: "https://github.com/uzh/guardian"
doc: "https://uzh.github.io/guardian"
bug-reports: "https://github.com/uzh/guardian/issues"
depends: [
"dune" {>= "2.9"}
"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"}
"odoc" {with-doc}
"alcotest-lwt" {with-test}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/uzh/guardian.git"