forked from bkolad/nanocoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nanocoin.cabal
117 lines (102 loc) · 3.67 KB
/
nanocoin.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
name: nanocoin
version: 0.1
synopsis: Simple blockchain/crypto currency implemenation
license: Apache
license-file: LICENSE
author: Adjoint Inc
maintainer: [email protected]
copyright: 2017 Adjoint Inc
Category: Finance
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Nanocoin,
Nanocoin.Block,
Nanocoin.Ledger,
Nanocoin.MemPool,
Nanocoin.Transaction,
Nanocoin.CLI,
Nanocoin.Network.Message,
Nanocoin.Network.Node,
Nanocoin.Network.Service,
Nanocoin.Network.P2P,
Nanocoin.Network.Cmd,
Nanocoin.Network.Peer,
Nanocoin.Network.RPC,
Nanocoin.Network.Utils,
Address,
Hash,
Key,
Logger,
Config,
Time
build-depends:
base >= 4.6 && <5.0,
configurator >= 0.3.0.0,
transformers >= 0.4 && <0.6,
transformers-base >= 0.4 && <0.6,
mtl >= 2.2.0 && <2.3,
monad-control >= 1.0.2.2 && <1.0.2.3,
containers >= 0.4 && <0.6,
time >= 1.6 && <1.9,
memory >= 0.14 && <0.15,
protolude >= 0.2,
aeson >= 1.0 && <1.3,
cereal >= 0.5 && <0.6,
binary >= 0.8.0.0 && <0.9.0.0,
bytestring >= 0.10 && <0.11,
base58-bytestring >= 0.0.3 && <1.0,
base64-bytestring >= 1.0 && <1.1,
text >= 1.2 && <1.3,
cryptonite >= 0.20 && <0.30,
merkle-tree >= 0.1.0 && <0.2.0,
haskeline >= 0.7.4,
optparse-applicative >= 0.13.2.0 && < 0.14.3.0,
scotty >= 0.11 && <0.12,
network >= 2.6 && <2.7,
network-multicast >= 0.2 && <0.3,
network-transport >= 0.4 && <0.7,
network-transport-tcp >= 0.4 && <0.8,
distributed-process >= 0.6.0 && <0.8.0,
distributed-process-lifted >= 0.3.0.0,
directory >= 1.3 && <1.4,
filepath >= 1.4.1.1 && <1.5.0.0,
tinylog >= 0.14.0 && <0.15.0
default-language: Haskell2010
default-extensions: OverloadedStrings NoImplicitPrelude ScopedTypeVariables
DeriveGeneric TupleSections
hs-source-dirs: src
ghc-options:
-Werror
-fno-warn-type-defaults
executable nanocoin
hs-source-dirs: exe
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, nanocoin
, optparse-applicative
, protolude
default-language: Haskell2010
default-extensions: OverloadedStrings NoImplicitPrelude
ghc-options:
-Wall
-Werror
test-suite nanocoin-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base
, nanocoin
, hspec
, protolude
, hedgehog
, bytestring
, transformers
, cereal
, network
other-modules: Gen
, Serialization
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions: OverloadedStrings NoImplicitPrelude