-
Notifications
You must be signed in to change notification settings - Fork 53
/
atd.opam
92 lines (92 loc) · 3.1 KB
/
atd.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Parser for the ATD data format description language"
description: """
ATD is the OCaml library providing a parser for the ATD language and various
utilities. ATD stands for Adjustable Type Definitions in reference to its main
property of supporting annotations that allow a good fit with a variety of data
formats. This package also provides the 'atdcat' and 'atddiff' command-line
utilities."""
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"}
"menhir" {>= "20180523" & != "20211230"}
"easy-format"
"alcotest" {with-test}
"odoc" {with-doc}
"re" {>= "1.9.0"}
"yojson" {>= "1.6.0"}
"cmdliner" {>= "1.1.0"}
]
dev-repo: "git+https://github.com/ahrefs/atd.git"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]