-
Notifications
You must be signed in to change notification settings - Fork 11
/
repr.opam
43 lines (42 loc) · 1.08 KB
/
repr.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Dynamic type representations. Provides no stability guarantee"
description: """
This package defines a library of combinators for building dynamic type
representations and a set of generic operations over representable types, used
in the implementation of Irmin and related packages.
It is not yet intended for public consumption and provides no stability
guarantee.
"""
maintainer: ["thomas@gazagnaire.org"]
authors: ["Thomas Gazagnaire" "Craig Ferguson"]
license: "ISC"
homepage: "https://github.com/mirage/repr"
doc: "https://mirage.github.io/repr"
bug-reports: "https://github.com/mirage/repr/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.08.0"}
"fmt" {>= "0.8.7"}
"uutf"
"either"
"jsonm" {>= "1.0.0"}
"base64" {>= "3.0.0"}
"optint" {>= "0.1.0"}
"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/mirage/repr.git"