-
Notifications
You must be signed in to change notification settings - Fork 0
/
lending.cabal
116 lines (113 loc) · 2.78 KB
/
lending.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
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
106
107
108
109
110
111
112
113
114
115
116
Cabal-Version: 2.4
Name: cerra-lending
Version: 1.0.0.0
Author: cerra.io
Maintainer: [email protected]
Build-Type: Simple
Copyright: © 2023 cerra
License: GPL-2.0-only
License-files:
common c
default-language: Haskell2010
default-extensions:
ExplicitForAll
ScopedTypeVariables
DeriveGeneric
StandaloneDeriving
DeriveLift
GeneralizedNewtypeDeriving
DeriveFunctor
DeriveFoldable
DeriveTraversable
LambdaCase
MultiParamTypeClasses
TypeOperators
FlexibleInstances
NamedFieldPuns
TypeFamilies
FlexibleContexts
DeriveAnyClass
DerivingStrategies
DerivingVia
DataKinds
ghc-options:
-Wall -Werror -Wmissing-export-lists -Wcompat
-Wnoncanonical-monad-instances -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wmissing-deriving-strategies
-Wredundant-constraints -Widentities
-fobject-code -fno-ignore-interface-pragmas -fno-omit-interface-pragmas
library
import: c
hs-source-dirs: src
exposed-modules:
Cerra.Lending.Contract.Lending.OnChain,
Cerra.Lending.Contract.Lending.Types,
Cerra.Lending.NFT.Factory.OnChain,
Cerra.Lending.NFT.Factory.Types,
Cerra.Lending.NFT.Borrower.OnChain,
Cerra.Lending.NFT.Borrower.Types,
Cerra.Lending.NFT.Lender.OnChain,
Cerra.Lending.NFT.Lender.Types,
Cerra.Lending.Oracle.Cerra.Types,
Cerra.Lending.Oracle.Cerra.OnChain,
Cerra.Lending.Oracle.Orcfax.Types,
Cerra.Lending.Oracle.Orcfax.OnChain,
Cerra.Lending.Utils.OnChainUtils,
Cerra.Lending.Utils.Utils,
Cerra.Lending.Utils.Settings,
Cerra.Lending.Utils.Debug
build-depends:
aeson
, base >=4.9 && <5
, base16-bytestring
, bytestring
, cardano-api
, cardano-ledger-alonzo
, containers
, directory >= 1.3.6.0
, freer-simple
, hex-text
, lens -any
, plutus-core
, plutus-ledger
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, plutus-script-utils
, pretty-show
, pretty-simple
, prettyprinter
, regex-tdfa ^>= 1.3.1.0
, req ^>= 3.9.0
, serialise
, template-haskell >= 2.16.0.0
, text
, uuid
, plutonomy
, generics-sop
executable cli
import: c
hs-source-dirs: src/Cerra/Lending
main-is: CLI.hs
ghc-options: -threaded -rtsopts "-with-rtsopts=-T"
build-depends:
aeson
, base >=4.9 && <5
, base16-bytestring
, bytestring
, cardano-api
, cardano-ledger-alonzo
, directory
, directory >= 1.3.6.0
, ghc-prim
, cerra-lending
, plutus-core
, plutus-ledger
, plutus-ledger-api
, plutus-tx
, plutus-tx-plugin
, plutus-script-utils
, pretty-simple
, serialise
, template-haskell >= 2.16.0.0
, text