-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdune-project
82 lines (70 loc) · 1.33 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
(lang dune 2.0)
(generate_opam_files true)
(license Apache)
(authors "Simon Cruanes" "Guillaume Bury")
(maintainers "[email protected]")
(version dev)
(homepage "https://github.com/c-cube/sidekick")
(source
(github c-cube/sidekick))
(bug_reports "https://github.com/c-cube/sidekick/issues/")
(using menhir 1.0)
(package
(name sidekick)
(synopsis "SMT solver based on msat and CDCL(T) (core library)")
(depends
(containers
(and
(>= 3.6)
(< 4.0)))
(ocaml (>= 4.08))
(iter
(>= 1.0))
(trace (>= 0.3))
(zarith :with-test)
(alcotest :with-test)
(trace-tef (and :with-test (>= 0.3)))
(odoc :with-doc))
(depopts
(mtime
(>= 2.0)) ; for profiling stuff
memtrace ; memory profiling
zarith ; for arith
)
(tags
("sat" "smt"))
(conflicts
(zarith
(< 1.8))
; need infix ops
))
(package
(name sidekick-base)
(synopsis "Concrete terms and theories for sidekick")
(depends
zarith
(smtlib-utils
(and
(>= "0.1")
(< "0.5")))
(sidekick
(= :version))
(qcheck
(and
:with-test
(>= 0.16)))
(mdx :with-test)
(odoc :with-doc)
menhir))
(package
(name sidekick-bin)
(synopsis "SMT solver based on msat and CDCL(T) (standalone binary)")
(depends
zarith
(sidekick
(= :version))
(sidekick-base
(= :version))
menhir)
(depopts
(trace-tef (>= 0.3))))