-
Notifications
You must be signed in to change notification settings - Fork 3
/
dune-project
39 lines (37 loc) · 970 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
39
(lang dune 1.10)
(using menhir 2.0)
(generate_opam_files true)
(name netkat)
(source (github netkat-lang/netkat))
(license MIT)
(authors
"Caleb Koch <[email protected]>"
"Steffen Smolka <[email protected]>"
"Nate Foster <[email protected]>"
)
(maintainers "Steffen Smolka <[email protected]>")
(documentation "https://netkat-lang.github.io/netkat/")
(package
(name netkat)
(synopsis "A clean slate implementation of NetKAT")
(description "A clean slate implementation of NetKAT")
(depends
(async (>= 0.12.0))
(ocaml (>= 4.07.0))
(dune (>= 1.10))
(menhir (and :build (>= 20190626)))
(base (>= v0.12.0))
(core (>= v0.12.0))
(stdio (>= v0.12.0))
(odoc :with-doc)
(open (>= 0))
(nice_parser (<> 0))
(idds (<> 0))
(ppx_deriving (>= 4.3))
(ppx_inline_test (and :with-test (>= v0.12.0)))
(ppx_jane (>= v0.12.0))
(printbox (>= 0.2))
(tyxml (>= 4.3.0))
(mparser (>= 1.2.3))
)
)