blob: 41e4a3745a4e8e54dd2fdc3578928f00467fbe0b (
plain)
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
|
(lang dune 3.11)
(name fixgen)
(generate_opam_files true)
(authors "Marc Coquand")
(maintainers "Marc Coquand")
(license AGPL-3.0-only)
(documentation https://url/to/documentation)
(using menhir 2.1)
(package
(name fixgen)
(synopsis "Generate fixtures for testing")
(description "Generate fixtures for testing")
(depends
ocaml
dune
ppx_inline_test
ppx_deriving
uuidm
alcotest
cmdliner
ISO8601
)
)
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|