this repo has no description
1opam-version: "2.0" 2maintainer: "martin@mjambon.com" 3authors: ["Martin Jambon"] 4 5homepage: "https://github.com/mjambon/atd" 6bug-reports: "https://github.com/mjambon/atd/issues" 7dev-repo: "git+https://github.com/mjambon/atd.git" 8build: [ 9 ["jbuilder" "subst" "-p" name] {dev} 10 ["jbuilder" "build" "-p" name "-j" jobs] 11 ["jbuilder" "runtest" "-p" name] {with-test} 12] 13depends: [ 14 "ocaml" {>= "4.03.0"} 15 "jbuilder" {>= "1.0+beta7"} 16 "atd" {>= "1.13.0" & < "2.0.0"} 17 "atdgen-runtime" {< "2.10.0"} 18 "biniou" {>= "1.0.6"} 19 "yojson" {>= "1.2.1"} 20] 21synopsis: 22 "Generates efficient JSON serializers, deserializers and validators" 23description: """ 24Atdgen is a command-line program that takes as input type definitions in the 25ATD syntax and produces OCaml code suitable for data serialization and 26deserialization. 27 28Two data formats are currently supported, these are biniou and JSON. 29Atdgen-biniou and Atdgen-json will refer to Atdgen used in one context or the 30other. 31 32Atdgen was designed with efficiency and durability in mind. Software authors 33are encouraged to use Atdgen directly and to write tools that may reuse part of 34Atdgen’s source code.""" 35url { 36 src: "https://github.com/mjambon/atd/archive/1.13.0.tar.gz" 37 checksum: [ 38 "sha256=e8b9513971f4578d2b0a918323ca10b79008271160d8bdc61b02d43336b7a970" 39 "md5=da11b6157d5674e2d27cfd401eb8003a" 40 ] 41}