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/dinosaure/encore"
5bug-reports: "https://github.com/dinosaure/encore/issues"
6dev-repo: "git+https://github.com/dinosaure/encore.git"
7doc: "https://dinosaure.github.io/encore/"
8license: "MIT"
9
10build: [
11 ["jbuilder" "subst" "-p" name] {dev}
12 ["jbuilder" "build" "-p" name "-j" jobs]
13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
14]
15depends: [
16 "ocaml" {>= "4.03.0"}
17 "jbuilder" {>= "1.0+beta9"}
18 "angstrom" {>= "0.9.0" & < "0.14.0"}
19 "ocplib-endian"
20 "fmt"
21 "alcotest" {with-test}
22]
23synopsis: "Isomorphism between encoder & decoder"
24description: """
25Encore is a little library to provide an interface to generate an
26[Angstrom](https://github.com/inhabitedtype/angstrom.git)'s decoder and a
27internal encoder from a shared description. The goal is specifically for
28[ocaml-git](https://github.com/mirage/ocaml-git.git) to ensure isomorphism when
29we decode and encode a Git object - and keep the same hash/identifier."""
30url {
31 src:
32 "https://github.com/dinosaure/encore/releases/download/v0.1/encore-0.1.tbz"
33 checksum: [
34 "sha256=482b6df59004201cf5347b52dedb594480b5c1e0fa70b3dfdcd5829e160264b3"
35 "md5=79647f73f51e1681cd64790b62d13e59"
36 ]
37}