forked from toadharvard/asm-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
35 lines (27 loc) · 837 Bytes
/
dune-project
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
(lang dune 3.7)
(generate_opam_files true)
(cram enable)
(license LGPL-3.0-or-later)
(authors "Dmitry Pilyuk" "Rafik Nurmuhametov")
(maintainers "Dmitry Pilyuk" "Rafik Nurmuhametov")
(bug_reports "FIXME where to put bug reports about the code")
(homepage
"https://github.com/DmitryPilyuk/fp2023/tree/master/OCamlWithEffects")
(package
(name OCamlWithEffects) ; FIXME and regenerate .opam file using 'dune build @install'
(synopsis "OCaml with effects")
(description
"FIXME. A longer description, for example, which are the most interesing features being supported, etc.")
(version 0.1)
(depends
dune
angstrom
(ppx_inline_test :with-test)
ppx_expect
ppx_deriving
bisect_ppx
(odoc :with-doc)
(ocamlformat :build)
; base
; After adding dependencies to 'dune' files and the same dependecies here too
))