diff options
author | Marc Coquand <marc@mccd.space> | 2023-12-20 20:46:00 -0600 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2023-12-25 18:22:59 -0600 |
commit | 262f161f42c4e59beec41c6f440336c38385426a (patch) | |
tree | 6491c9b661a0b5a14c9a30ecf25e036f8762239d /dune-project | |
parent | cc783c157f31e7e713c8b83be67449b1859dac27 (diff) | |
download | fixgen-262f161f42c4e59beec41c6f440336c38385426a.tar.gz fixgen-262f161f42c4e59beec41c6f440336c38385426a.tar.bz2 fixgen-262f161f42c4e59beec41c6f440336c38385426a.zip |
Initial commit
Diffstat (limited to 'dune-project')
-rw-r--r-- | dune-project | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/dune-project b/dune-project index dc732ee..55c7f11 100644 --- a/dune-project +++ b/dune-project @@ -1,6 +1,6 @@ (lang dune 3.11) -(name ann_bloop) +(name fixgen) (generate_opam_files true) @@ -15,13 +15,15 @@ (documentation https://url/to/documentation) +(using menhir 2.1) + (package - (name ann_bloop) - (synopsis "A short synopsis") - (description "A longer description") - (depends ocaml dune dream ppx_yojson_conv crunch cohttp lwt_ppx cohttp-lwt-unix containers calendar ptime mirage-crypto-rng mirage-crypto-rng-lwt ppx_inline_test ppx_deriving decoders-yojson) - (tags - (topics "to describe" your project))) + (name fixgen) + (synopsis "Generate fixtures for testing") + (description "Generate fixtures for testing") + (depends ocaml dune ppx_inline_test ppx_deriving uuidm alcotest + ) + ) ; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project |