-
Notifications
You must be signed in to change notification settings - Fork 1
/
dune-project
105 lines (92 loc) · 2.05 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
(lang dune 3.8)
(name castor)
(source (github jfeser/castor))
(license MIT)
(authors "Jack Feser <[email protected]>")
(maintainers "Jack Feser <[email protected]>")
(package
(name castor)
(synopsis "A deductive database synthesizer")
(depends
(dune (>= 1.10))
(menhir :build)
dune-site
(core (>= v0.12))
core_unix
combinat
ocamlgraph
iter
llvm
(postgresql (>= 4.4))
(bos (>= 0.2))
(logs (>= 0.6))
(hashcons (>= 1.3))
(lwt (>= 4.2.1))
(lwt_ppx (>= 1.2.2))
(ppx_compare (>= v0.12))
(ppx_sexp_conv (>= v0.12))
(ppx_hash (>= v0.12))
(ppx_let (>= v0.12))
(visitors (>= 20180513))
yojson)
(sites (share code)))
(package
(name castor_test)
(synopsis "Tests for Castor")
(depends
(dune (and :build (>= 1.10)))
castor
(postgresql (>= 4.4))
(bos (>= 0.2))
(logs (>= 0.6))
sexp_diff
(hashcons (>= 1.3))
(lwt (>= 4.2.1))
(lwt_ppx (>= 1.2.2))
(ppx_compare (>= v0.12))
(ppx_sexp_conv (>= v0.12))
(ppx_hash (>= v0.12))
(ppx_let (>= v0.12))
(visitors (>= 20180513))
ounit
(expect_test_helpers_core (>= v0.12))))
(package
(name sqlgg)
(synopsis "Just a SQL parser. Based on sqlgg")
(depends
(dune (and :build (>= 1.10)))
menhir
base
stdio
ppx_sexp_conv
ppx_compare))
(package
(name genhash)
(synopsis "Generate hash functions")
(depends
(dune (and :build (>= 1.11)))
(core (>= v0.12))
(integers (>= 0.3))
(ppx_sexp_conv (>= v0.12))
(ppx_compare (>= v0.12))
(ppx_expect (>= v0.12))))
(package
(name cmph)
(synopsis "OCaml wrapper for the C Minimal Perfect Hashing library")
(description "ocaml-cmph is a wrapper library for the C Minimal Perfect Hashing (CMPH)
library. CMPH contains algorithms for generating perfect hashes. ocaml-cmph
exposes a high level interface to these hash generators.
")
(depends
(dune (and :build (>= 1.10)))
(ounit (and :with_test (>= 2.0)))
(ctypes (>= 0.14))
(ctypes-foreign (>= 0.4))
(core (>= v0.12))
(ppx_sexp_conv (>= v0.12))))
(using menhir 2.0)
(using dune_site 0.1)
(generate_opam_files true)
; Local Variables:
; mode: dune
; End: