-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFPauth-core.opam
40 lines (32 loc) · 879 Bytes
/
FPauth-core.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
opam-version: "2.0"
name: "FPauth-core"
version: "1.0.0"
license: "MIT"
synopsis: "Easy authentication system for Dream framework"
homepage: "https://github.com/mikeGEINE/FPauth"
bug-reports: "https://github.com/mikeGEINE/FPauth/issues"
dev-repo: "git+https://github.com/mikeGEINE/FPauth.git"
authors: ["Mikhail Geine <[email protected]>"
"Pavel Argentov <[email protected]>"]
maintainer: "Mikhail Geine <[email protected]>"
build: [
["dune" "build" "-p" name "-j" jobs]
]
run-test: [
["dune" "runtest" "-p" name "-j" jobs]
]
depends: [
"dream" {>="1.0.0~alpha3"}
"ocaml" {>="4.12.0"}
"dune" {>="2.7"}
"lwt_ppx" {>= "2.0.3"}
"base"
#Testing, development
"alcotest" {with-test}
"bisect_ppx" {with-test & >= "2.5.0"} # --instrument-with.
"odoc" {with-doc}
]
conflicts: [
"base-nnp"
"ocaml-option-nnpchecker"
]