-
Notifications
You must be signed in to change notification settings - Fork 1
/
dune-project
39 lines (33 loc) · 950 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
36
37
38
(lang dune 2.9)
(using menhir 1.0)
;; Dune uses ocamlformat for automatic formatting,
;; which I don't really like. Therefore, we disable
;; it in favor of ocp-indent as an editor plugin.
(formatting disabled)
;; Let's generate the requisite opam files instead
;; of writing them by hand.
(generate_opam_files true)
(name stagedtt)
(authors "Reed Mullanix")
(maintainers "Reed Mullanix")
(source (github TOTBWF/stagedtt))
(homepage "https://www.github.com/TOTBWF/stagedtt")
(bug_reports "https://www.github.com/TOTBWF/stagedtt")
(package
(name stagedtt)
(synopsis "A staged type theory")
(depends
(cmdliner (>= 1.1))
(containers (>= 3.6))
(menhir (>= 20220210))
(ppxlib (>= 0.25.0~5.00preview))
;; Pinned Deps
algaeff
bwd
bantorra
yuujinchou
ppx_effects
;; Tests
(alcotest (and :with-test (>= 1.5)))
(bechamel (and :with-test (>= 0.2)))
(bechamel-notty (and (>= 0.2) :with-test))))