|
| 1 | +opam-version: "2.0" |
| 2 | +synopsis: |
| 3 | + "Generates efficient JSON serializers, deserializers and validators" |
| 4 | +description: """ |
| 5 | +Atdgen is a command-line program that takes as input type definitions in the ATD |
| 6 | +syntax and produces OCaml code suitable for data serialization and |
| 7 | +deserialization. |
| 8 | +Two data formats are currently supported, these are biniou and JSON. |
| 9 | +Atdgen-biniou and Atdgen-json will refer to Atdgen used in one context or the |
| 10 | +other. |
| 11 | +Atdgen was designed with efficiency and durability in mind. Software authors are |
| 12 | +encouraged to use Atdgen directly and to write tools that may reuse part of |
| 13 | +Atdgen’s source code.""" |
| 14 | +maintainer: [ |
| 15 | + |
| 16 | + "Martin Jambon < [email protected]>" |
| 17 | + "Rudi Grinberg < [email protected]>" |
| 18 | +] |
| 19 | +authors: [ |
| 20 | + "Martin Jambon < [email protected]>" |
| 21 | + "Rudi Grinberg < [email protected]>" |
| 22 | + "Martin Jambon < [email protected]>" |
| 23 | + "Martin Jambon < [email protected]>" |
| 24 | + |
| 25 | + |
| 26 | + "David Sheets < [email protected]>" |
| 27 | + "Rudi Grinberg < [email protected]>" |
| 28 | + "Martin Jambon < [email protected]>" |
| 29 | + "Jeff Meister < [email protected]>" |
| 30 | + "Caio Wakamatsu < [email protected]>" |
| 31 | + "Carmelo Piccione < [email protected]>" |
| 32 | + |
| 33 | + "Egor Chemokhonenko < [email protected]>" |
| 34 | + "Gabriel Scherer < [email protected]>" |
| 35 | + "Raman Varabets < [email protected]>" |
| 36 | + |
| 37 | + "Mathieu Baudet < [email protected]>" |
| 38 | + "Oleksiy Golovko < [email protected]>" |
| 39 | + "Rauan Mayemir < [email protected]>" |
| 40 | + "Carmelo Piccione < [email protected]>" |
| 41 | + "John Billings < [email protected]>" |
| 42 | + |
| 43 | + "Brendan Long < [email protected]>" |
| 44 | + |
| 45 | + "Louis Roché (Ahrefs) < [email protected]>" |
| 46 | + |
| 47 | + "Pavel Antoshkin < [email protected]>" |
| 48 | + "Pierre Boutillier < [email protected]>" |
| 49 | + |
| 50 | + |
| 51 | + "Arjun Ravi Narayan < [email protected]>" |
| 52 | + |
| 53 | + "Christophe Troestler < [email protected]>" |
| 54 | + "Damien Doligez < [email protected]>" |
| 55 | + |
| 56 | + "Ding Xiang Fei < [email protected]>" |
| 57 | + "François Pottier < [email protected]>" |
| 58 | + "Javier Chavarri < [email protected]>" |
| 59 | + |
| 60 | + |
| 61 | + |
| 62 | + "Raman Varabets < [email protected]>" |
| 63 | + "Stephane Legrand < [email protected]>" |
| 64 | + "Vincent Bernardoff < [email protected]>" |
| 65 | + |
| 66 | + |
| 67 | + |
| 68 | +] |
| 69 | +license: "MIT" |
| 70 | +homepage: "https://github.com/ahrefs/atd" |
| 71 | +bug-reports: "https://github.com/ahrefs/atd/issues" |
| 72 | +depends: [ |
| 73 | + "dune" {>= "2.8"} |
| 74 | + "ocaml" {>= "4.08"} |
| 75 | + "alcotest" {with-test} |
| 76 | + "atd" {>= "2.7.0"} |
| 77 | + "atdgen-runtime" {>= "2.1.0"} |
| 78 | + "atdgen-codec-runtime" {with-test} |
| 79 | + "biniou" {>= "1.0.6"} |
| 80 | + "yojson" {>= "2.0.1"} |
| 81 | + "odoc" {with-doc} |
| 82 | + "re" |
| 83 | +] |
| 84 | +dev-repo: "git+https://github.com/ahrefs/atd.git" |
| 85 | +build: [ |
| 86 | + ["dune" "subst"] {dev} |
| 87 | + [ |
| 88 | + "dune" |
| 89 | + "build" |
| 90 | + "-p" |
| 91 | + name |
| 92 | + "-j" |
| 93 | + jobs |
| 94 | + "@install" |
| 95 | + "@doc" {with-doc} |
| 96 | + ] |
| 97 | +] |
| 98 | +url { |
| 99 | + src: |
| 100 | + "https://github.com/ahrefs/atd/releases/download/2.10.0/atdts-2.10.0.tbz" |
| 101 | + checksum: [ |
| 102 | + "sha256=77d27409a4e9dac41b9ca2e9ea60836c6c18008b22a157abedfb5a2d24850998" |
| 103 | + "sha512=a2b543a363da540df5a6a326d0eb9fb9048927f515ca00781e687baabfdaa96b5a60ec2a39c358191365621447bb7957a35be31f50366db7b8d6311e4bf0034f" |
| 104 | + ] |
| 105 | +} |
| 106 | +x-commit-hash: "110d079dac5a3babfa2af69887ee8992cb5e213c" |
0 commit comments