forked from nadia-polikarpova/synquid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
synquid.cabal
73 lines (66 loc) · 2.54 KB
/
synquid.cabal
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
name: synquid
version: 0.4
synopsis: Program Synthesis from Refinement Types
description: Synquid is a simple functional programming language with refinement types.
In Synquid the programmer must provide the type signature for each top-level function,
but can leave parts (or all) of the implementation out for the system to fill in.
license: MIT
license-file: LICENSE
author: Nadia Polikarpova
maintainer: [email protected]
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
flag synquid
Description: Build the synquid executable
Default: True
executable synquid
main-is: Synquid.hs
other-modules: Synquid.Error
, Synquid.HtmlOutput
, Synquid.Logic
, Synquid.Parser
, Synquid.Pretty
, Synquid.Program
, Synquid.Resolver
, Synquid.SolverMonad
, Synquid.HornSolver
, Synquid.TypeConstraintSolver
, Synquid.Explorer
, Synquid.Synthesizer
, Synquid.TypeChecker
, Synquid.Tokens
, Synquid.Type
, Synquid.Util
, Synquid.Z3
other-extensions: TemplateHaskell
, Rank2Types
, FlexibleInstances
, TypeSynonymInstances
, FlexibleContexts
build-depends: base >=4.6
, containers >=0.5
, mtl >=2.2
, transformers >=0.3
, transformers-compat >=0.4
, lens >=3.7
, ansi-wl-pprint >=0.6
, ansi-terminal >=0.6
, html >=1
, bimap >= 0.2
, z3 > 4.0
, logict >= 0.5
, parsec >= 3.1
, indents >= 0.3
, cmdargs >=0.10
, filepath
, time
, haskell-src-exts >= 1.17
, safe
, split
ghc-options: -O2
hs-source-dirs: src
default-language: Haskell2010
If !flag(synquid)
buildable: False