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"]
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" {< "2.0"}
25 "angstrom" {>= "0.9.0" & < "0.14.0"}
26 "ocplib-endian"
27 "fmt"
28 "alcotest" {with-test}
29]
30url {
31 src:
32 "https://github.com/dinosaure/encore/releases/download/v0.2/encore-v0.2.tbz"
33 checksum: [
34 "sha256=406847bb5e9f49bb12f57d82d855b173fd037e7ece0860d50bbdb43cdf65f654"
35 "md5=d70aaa7c71e7b819cf75c9d5c90f0cf3"
36 ]
37}