-
Notifications
You must be signed in to change notification settings - Fork 6
/
mpst.opam
37 lines (37 loc) · 866 Bytes
/
mpst.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
opam-version: "2.0"
version: "0.0.1"
synopsis: "Re-implementation of OCaml-MPST [WIP]"
description: "Re-implementation of OCaml-MPST [WIP]."
maintainer: ["keigo.imai@gmail.com"]
authors: ["Keigo Imai"]
homepage: "https://github.com/keigoi/ocaml-mpst"
doc: "https://github.com/keigoi/ocaml-mpst"
bug-reports: "https://github.com/keigoi/ocaml-mpst/issues"
depends: [
"ocaml" {>= "4.12.0"}
"dune" {>= "2.8"}
"hlist"
"rows"
"ppxlib" {>= "0.19.0"}
"ounit" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/keigoi/ocaml-mpst.git"
pin-depends: [
[ "hlist.dev" "git+https://github.com/keigoi/hlist-ocaml.git"]
[ "rows.dev" "git+https://github.com/keigoi/rows-ocaml.git"]
]