this repo has no description
1opam-version: "2.0"
2maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
3authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
4homepage: "https://github.com/mirage/encore"
5bug-reports: "https://github.com/mirage/encore/issues"
6dev-repo: "git+https://github.com/mirage/encore.git"
7doc: "https://mirage.github.io/encore/"
8license: "MIT"
9synopsis: "Library to generate encoder/decoder which ensure isomorphism"
10description: """
11Encore is a little library to provide an interface to generate an angstrom decoder and
12an internal encoder from a shared description. The goal is to ensure a dual isomorphism
13between them.
14"""
15
16build: [
17 ["dune" "subst"] {dev}
18 ["dune" "build" "-p" name "-j" jobs]
19 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
20]
21
22depends: [
23 "ocaml" {>= "4.03.0"}
24 "dune" {>= "1.1"}
25 "angstrom" {>= "0.10.0" & < "0.14.0"}
26 "fmt"
27 "ke" {>= "0.3"}
28 "bigstringaf" {>= "0.5.0"}
29 "bigarray-compat"
30 "alcotest" {with-test}
31]
32url {
33 src:
34 "https://github.com/mirage/encore/releases/download/v0.4/encore-v0.4.tbz"
35 checksum: [
36 "sha256=a100f9e46000aa1fc618bf3eb47d56775afabe0b1b17fc10f1b64f9ad3bf76e2"
37 "sha512=28d47feac863c0add0187d8e8db87d585522ef53597969f8c2d9ef2f8ca466c67b0876613bacf400a14efe223dd24f91ce8816f55fcd2cd05a56efc2cbd1b6cf"
38 ]
39}