-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkda-tool.cabal
193 lines (185 loc) · 3.53 KB
/
kda-tool.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
name: kda-tool
version: 1.1
synopsis: Kadena command line tool
-- description:
-- bug-reports:
license: BSD3
license-file: LICENSE
author: Doug Beardsley
maintainer: [email protected]
copyright: Kadena LLC
-- category:
build-type: Simple
cabal-version: >=1.10
library
-- other-modules:
exposed-modules:
AppMain
Commands.CombineSigs
Commands.Cut
Commands.GenTx
Commands.Keygen
Commands.ListKeys
Commands.Local
Commands.Mempool
Commands.Poll
Commands.Send
Commands.Sign
Commands.Verify
Commands.WalletSign
Keys
Logger
TxTemplate
Types.Encoding
Types.Env
Types.HostPort
Types.KeyType
Types.Node
Types.TxInputs
Utils
build-depends:
Decimal
, HsYAML
, HsYAML-aeson
, aeson < 2
, async
, attoparsec
, base >= 4.13 && < 5
, base16
, base64
, binary
, bytestring >= 0.10.12
, cardano-crypto
, cassava
, chainweb-api
, connection
, containers
, cryptohash-sha256
, cryptohash-sha512
, cryptonite
, data-default
, directory
, dlist
, echo
, errors
, filepath
, http-client
, http-client-tls
, http-types
, kadena-signing-api
, katip
, lens
, lens-aeson
, memory
, mtl
, mustache
, mwc-random
, network-uri
, optparse-applicative
, pact
, process
, resource-pool
, retry
, safe-exceptions
, scientific
, servant
, servant-client
, stm
, stm-linkedlist
, string-conv
, text
, time
, transformers
, unordered-containers
, vector
, zlib
hs-source-dirs: src
default-language: Haskell2010
default-extensions:
ScopedTypeVariables
ghc-options: -Wall -Wno-unticked-promoted-constructors -fno-show-valid-hole-fits
executable kda
main-is: Main.hs
build-depends:
base
, kda-tool
hs-source-dirs: exe
default-language: Haskell2010
ghc-options: -threaded -Wall -Wno-unticked-promoted-constructors -fno-show-valid-hole-fits
test-suite kda-tool-tests
main-is: TestMain.hs
type: exitcode-stdio-1.0
hs-source-dirs: test, src
default-language: Haskell2010
default-extensions:
ScopedTypeVariables
ghc-options: -Wall -threaded -rtsopts -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
build-depends:
Decimal
, HsYAML
, HsYAML-aeson
, aeson
, async
, attoparsec
, base
, base16
, base64
, binary
, bytestring
, cardano-crypto
, cassava
, chainweb-api
, connection
, containers
, cryptohash-sha256
, cryptohash-sha512
, cryptonite
, data-default
, directory
, dlist
, echo
, errors
, filepath
, http-client
, http-client-tls
, http-types
, kadena-signing-api
, katip
, lens
, lens-aeson
, memory
, mtl
, mustache
, mwc-random
, network-uri
, optparse-applicative
, pact
, process
, resource-pool
, retry
, scientific
, servant
, servant-client
, stm
, stm-linkedlist
, string-conv
, text
, time
, transformers
, unordered-containers
, vector
, zlib
, hspec
, hspec-golden
other-modules:
Commands.GenTx
HostPortSpec
Keys
TemplateSpec
TxTemplate
Types.Encoding
Types.Env
Types.HostPort
Types.KeyType
Types.TxInputs
Utils