-
Notifications
You must be signed in to change notification settings - Fork 24
/
plutip-core.cabal
194 lines (183 loc) · 4.16 KB
/
plutip-core.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
cabal-version: 3.0
name: plutip-core
version: 0.2
license-file: LICENSE
author: mlabs
maintainer: TODO
build-type: Simple
extra-source-files: CHANGELOG.md
data-files:
cluster-data/*.cert
cluster-data/*.config
cluster-data/*.counter
cluster-data/*.opcert
cluster-data/*.sh
cluster-data/*.skey
cluster-data/*.vkey
cluster-data/*.yaml
cluster-data/faucet-addrs/*.addr
cluster-data/faucet-addrs/*.key
common common-imports
build-depends:
, aeson
, aeson-qq
, async
, base
, base16-bytestring
, base58-bytestring
, bech32
, bech32-th
, bytestring
, cardano-addresses
, cardano-api
, cardano-binary
, cardano-cli
, cardano-crypto
, cardano-crypto-wrapper
, cardano-data
, cardano-ledger-api
, cardano-ledger-core
, cardano-ledger-shelley
, cardano-slotting
, cardano-wallet-application-extras
, cardano-wallet-launcher
, cardano-wallet-primitive
, cardano-wallet-test-utils
, cardano-wallet:{cardano-wallet, address-derivation, cardano-wallet-api-http}
, cborg
, containers
, contra-tracer
, crypto-hash-extra
, data-default
, deepseq
, directory
, either
, filepath
, generic-lens
, http-client
, http-types
, int-cast
, iohk-monitoring
, iohk-monitoring-extra
, lens
, memory
, mtl
, network-uri
, OddWord
, ouroboros-consensus
, ouroboros-network
, ouroboros-network-api
, plutus-core
, retry
, servant-client
, stm
, temporary
, temporary-extra
, text
, text-class
, time
, typed-process
, unliftio
, unliftio-core
, yaml
common common-language
default-extensions:
BangPatterns
DataKinds
DeriveAnyClass
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveLift
DeriveTraversable
DerivingStrategies
EmptyDataDecls
ExplicitForAll
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
ImportQualifiedPost
LambdaCase
MonoLocalBinds
MultiParamTypeClasses
NamedFieldPuns
NumericUnderscores
OverloadedStrings
QuasiQuotes
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeApplications
TypeFamilies
TypeOperators
TypeSynonymInstances
ViewPatterns
common common-configs
default-language: Haskell2010
common common-ghc-options
ghc-options:
-fno-ignore-interface-pragmas -fno-omit-interface-pragmas
-fno-specialize -fno-strictness -fno-warn-orphans -fobject-code
-fplugin-opt PlutusTx.Plugin:defer-errors
library
import: common-imports
import: common-language
import: common-configs
import: common-ghc-options
ghc-options:
-Wall -Wcompat -Wincomplete-uni-patterns -Wredundant-constraints
-Wmissing-export-lists -Wmissing-deriving-strategies
-Wmissing-import-lists -Werror
hs-source-dirs: src/
exposed-modules:
Plutip.CardanoApi
Plutip.Cluster
Plutip.Config
Plutip.DistributeFunds
Plutip.Keys
Plutip.Types
other-modules:
Paths_plutip_core
Plutip.Launch.Cluster
Plutip.Launch.Extra.Types
Plutip.Launch.Extra.Utils
Plutip.Launch.FaucetFunds
Plutip.Launch.PoolConfigs
test-suite plutip-tests
import: common-imports
import: common-language
import: common-configs
import: common-ghc-options
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts
build-depends:
, base
, plutip-core
, tasty
, tasty-hunit
, text
other-modules: Spec.ClusterStartup
default-extensions:
OverloadedStrings
QuasiQuotes
RecordWildCards
TupleSections
executable local-cluster
main-is: local-cluster/Main.hs
build-depends:
, aeson
, base
, cardano-ledger-shelley
, cardano-wallet-launcher
, containers
, data-default
, mtl
, optparse-applicative
, plutip-core
, time
ghc-options: -Wall -threaded -rtsopts