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" {>= "2.0.0"} 25 "angstrom" {>= "0.14.0"} 26 "fmt" 27 "ke" {>= "0.4"} 28 "bigstringaf" {>= "0.5.0"} 29 "bigarray-compat" 30 "bigarray-overlap" {>= "0.2.0"} 31 "alcotest" {with-test} 32] 33url { 34 src: 35 "https://github.com/mirage/encore/releases/download/v0.5/encore-v0.5.tbz" 36 checksum: [ 37 "sha256=36dd2175340a1e84e8efd8f7cdb000a47c04aee2e6e817eb81692612146dc096" 38 "sha512=a5d85ddb0a2e39c0a522d6091500fba83d71ed2f48f64a396c966e329e517ead7f9104756c6864439b0833dfbe5ea31a222e995c96653ee82f719b099d8e7514" 39 ] 40}