blob: 6b155aa106abc78032cd8f2528905388175261c6 (
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
|
(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
)
)
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|