-
Notifications
You must be signed in to change notification settings - Fork 10
/
dpt.opam
38 lines (38 loc) · 878 Bytes
/
dpt.opam
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
opam-version: "2.0"
name: "dpt"
version: "~dev"
synopsis: "Dataplane threads"
maintainer: "John Sonchack <[email protected]>"
authors:
"John Sonchack <[email protected]>"
license: "MIT"
homepage: "git+https://github.com/PrincetonUniversity/lucid"
dev-repo: "git+https://github.com/PrincetonUniversity/lucid"
bug-reports: "git+https://github.com/PrincetonUniversity/lucid/issues"
depends: [
"odoc"
"integers"
"batteries" { = "3.5.1" }
"ounit"
"ANSITerminal"
"menhir"
"ppx_deriving"
"ppx_string_interpolation"
"zarith"
"visitors"
"fileutils"
"ppx_import"
"core" { <= "v0.14.1" }
"dune" { build }
"ocamlgraph"
"angstrom"
"yojson"
"pyml"
"pprint"
"z3"
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-f" "--no-buffer" "-j" jobs] {with-test}
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
]