forked from input-output-hk/marlowe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmarlowe.cabal
44 lines (43 loc) · 1.45 KB
/
marlowe.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
name: marlowe
version: 0.1.0.0
license: BSD3
license-file: LICENSE
author: Alexander Nemish
maintainer: [email protected]
build-type: Simple
extra-source-files: README.md
cabal-version: >= 1.10
executable marlowe
default-language: Haskell2010
build-depends: base >=4.9,
mtl,
containers,
sbv,
glpk-hs,
QuickCheck,
tasty,
tasty-hunit,
tasty-smallcheck,
tasty-quickcheck
other-modules:
Analysis,
AnalysisObs,
Builder,
ContractFormatter,
CrowdFunding,
DepositIncentive,
EqSolve,
Escrow,
EscrowV2,
GenSemantics,
GLPKSolve,
LogicDefs,
LogicSolve,
PropAnalysis,
SBVSolve,
Semantics,
SimplexSolve,
SmartInputs,
SPJModel
hs-source-dirs: src
main-is: Main.hs