This repository has been archived by the owner on Jan 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaskoin-wallet.cabal
184 lines (167 loc) · 8.61 KB
/
haskoin-wallet.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
name: haskoin-wallet
version: 0.4.3
synopsis:
Implementation of a Bitcoin SPV Wallet with BIP32 and multisig support.
description:
This package provides a SPV (simple payment verification) wallet
implementation. It features BIP32 key management, deterministic signatures
(RFC-6979) and first order support for multi-signature transactions. You
can communicate with the wallet process through a ZeroMQ API or through a
command-line tool called "hw" which is also provided in this package.
homepage: http://github.com/haskoin/haskoin
bug-reports: http://github.com/haskoin/haskoin/issues
tested-with: GHC==8.0.2
license: PublicDomain
license-file: UNLICENSE
author: Philippe Laprade, Jean-Pierre Rupp
maintainer: [email protected]
category: Bitcoin, Finance, Network
build-type: Simple
cabal-version: >= 1.9.2
extra-source-files: config/help, config/config.yml, config/models
source-repository head
type: git
location: git://github.com/haskoin/haskoin.git
Flag library-only
Description: Do not build the executables
Default: False
library
hs-source-dirs: src
exposed-modules: Network.Haskoin.Wallet
Network.Haskoin.Wallet.Model
Network.Haskoin.Wallet.Client
Network.Haskoin.Wallet.Server
Network.Haskoin.Wallet.Settings
Network.Haskoin.Wallet.Internals
other-modules: Network.Haskoin.Wallet.Types
Network.Haskoin.Wallet.Types.BlockInfo
Network.Haskoin.Wallet.Accounts
Network.Haskoin.Wallet.Transaction
Network.Haskoin.Wallet.Block
Network.Haskoin.Wallet.Server.Handler
Network.Haskoin.Wallet.Client.Commands
Network.Haskoin.Wallet.Client.PrettyJson
Network.Haskoin.Wallet.Database
extensions: TemplateHaskell
QuasiQuotes
OverloadedStrings
MultiParamTypeClasses
TypeFamilies
GADTs
FlexibleContexts
FlexibleInstances
EmptyDataDecls
DeriveDataTypeable
RecordWildCards
GeneralizedNewtypeDeriving
build-depends: aeson >= 1.2 && < 1.3
, aeson-pretty >= 0.7 && < 0.9
, base >= 4.8 && < 5
, base64-bytestring >= 1.0.0.1
, bytestring >= 0.10 && < 0.11
, cereal >= 0.5 && < 0.6
, containers >= 0.5 && < 0.6
, conduit >= 1.2 && < 1.3
, deepseq >= 1.4 && < 1.5
, data-default >= 0.5 && < 0.8
, directory >= 1.2 && < 1.4
, daemons >= 0.2 && < 0.3
, entropy >= 0.3.7 && < 0.4
, exceptions >= 0.6 && < 0.9
, esqueleto >= 2.4 && < 2.6
, file-embed >= 0.0 && < 0.1
, filepath >= 1.4 && < 1.5
, haskeline
, haskoin-core >= 0.3 && < 0.5
, haskoin-node >= 0.3 && < 0.5
, lifted-async >= 0.2 && < 0.10
, lifted-base >= 0.2 && < 0.3
, monad-logger >= 0.3.13 && < 0.4
, monad-control >= 1.0 && < 1.1
, mtl >= 2.1 && < 2.3
, persistent >= 2.7 && < 2.8
, persistent-template >= 2.1 && < 2.6
, persistent-sqlite >= 2.2 && < 2.7
, resourcet >= 1.1 && < 1.2
, semigroups
, split >= 0.2 && < 0.3
, stm >= 2.4 && < 2.5
, stm-chans >= 3.0 && < 3.1
, stm-conduit >= 2.6 && < 3.1
, string-conversions >= 0.4 && < 0.5
, text >= 0.11 && < 1.3
, time >= 1.8 && < 1.9
, transformers-base >= 0.4 && < 0.5
, unix >= 2.6 && < 2.8
, unordered-containers >= 0.2 && < 0.3
, uri-encode >= 1.5.0.5
, yaml >= 0.8 && < 0.9
, zeromq4-haskell >= 0.7 && < 0.8
ghc-options: -Wall
executable hw
if flag(library-only)
Buildable: False
main-is: Main.hs
build-depends: base, haskoin-wallet
hs-source-dirs: app
ghc-options: -Wall
-O3
-threaded
-eventlog
-rtsopts
-with-rtsopts=-N4
test-suite test-haskoin-wallet
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Network.Haskoin.Wallet.Arbitrary
, Network.Haskoin.Wallet.Tests
, Network.Haskoin.Wallet.Units
extensions: RecordWildCards
OverloadedStrings
build-depends: aeson >= 1.2 && < 1.3
, base >= 4.8 && < 5
, bytestring >= 0.10 && < 0.11
, containers >= 0.5 && < 0.6
, directory >= 1.2 && < 1.4
, haskoin-core >= 0.3 && < 0.5
, haskoin-node >= 0.3 && < 0.5
, haskoin-wallet
, monad-logger >= 0.3 && < 0.4
, mtl >= 2.1 && < 2.3
, persistent >= 2.7 && < 2.8
, persistent-sqlite >= 2.2 && < 2.7
, resourcet >= 1.1 && < 1.2
, text >= 0.11 && < 1.3
, unordered-containers >= 0.2 && < 0.3
, HUnit >= 1.6 && < 1.7
, QuickCheck >= 2.10 && < 2.11
, stm >= 2.4 && < 2.5
, stm-chans >= 3.0 && < 3.1
, string-conversions >= 0.4 && < 0.5
, test-framework >= 0.8 && < 0.9
, test-framework-quickcheck2 >= 0.3 && < 0.4
, test-framework-hunit >= 0.3 && < 0.4
hs-source-dirs: test
ghc-options: -Wall
executable example-inproc-wallet-server
if flag(library-only)
Buildable: False
main-is: Main.hs
hs-source-dirs: examples/embedded-inproc-wallet-server/
extensions: OverloadedStrings
ghc-options: -Wall
-O3
-threaded
-rtsopts
-with-rtsopts=-N4
build-depends: base >= 4.8 && < 5
, aeson >= 1.2 && < 1.3
, aeson-pretty >= 0.7 && < 0.9
, haskoin-node >= 0.3 && < 0.5
, haskoin-wallet
, monad-logger >= 0.3 && < 0.4
, persistent-sqlite >= 2.2 && < 2.7
, resourcet >= 1.1 && < 1.2
, unordered-containers >= 0.2 && < 0.3
, string-conversions >= 0.4 && < 0.5
, zeromq4-haskell >= 0.7 && < 0.8