-
Notifications
You must be signed in to change notification settings - Fork 8
/
encore.opam
30 lines (28 loc) · 979 Bytes
/
encore.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
opam-version: "2.0"
name: "encore"
maintainer: "Romain Calascibetta <[email protected]>"
authors: "Romain Calascibetta <[email protected]>"
homepage: "https://github.com/mirage/encore"
bug-reports: "https://github.com/mirage/encore/issues"
dev-repo: "git+https://github.com/mirage/encore.git"
doc: "https://mirage.github.io/encore/"
license: "MIT"
synopsis: "Library to generate encoder/decoder which ensure isomorphism"
description: """
Encore is a little library to provide an interface to generate an angstrom decoder and
an internal encoder from a shared description. The goal is to ensure a dual isomorphism
between them.
"""
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.07.0"}
"dune" {>= "2.0.0"}
"angstrom" {>= "0.14.0"}
"fmt"
"bigstringaf" {>= "0.5.0"}
"alcotest" {with-test}
]