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