-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitfunctor.cabal
116 lines (113 loc) · 4.97 KB
/
bitfunctor.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
name: bitfunctor
version: 0.1.0.0
-- synopsis:
-- description:
homepage: http://bitfunctor.net,
https://github.com/BitFunctor/bitfunctor
bug-reports: https://github.com/BitFunctor/bitfunctor/issues
license: MIT
license-file: LICENSE
author: andruiman <[email protected]>,
Sergey Kazenyuk <[email protected]>
maintainer: andruiman <[email protected]>,
Sergey Kazenyuk <[email protected]>
copyright: (c) 2015 BitFunctor Project
category: Finance, Network
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Network.BitFunctor2.Platform.Application,
Network.BitFunctor2.Platform.Blockchain,
Network.BitFunctor2.Platform.Blockchain.Consensus,
Network.BitFunctor2.Platform.Blockchain.Consensus.Types,
Network.BitFunctor2.Platform.Blockchain.Types,
Network.BitFunctor2.Platform.Node,
Network.BitFunctor2.Platform.Storage.Backend.Acid,
Network.BitFunctor2.Platform.Storage.Backend.Acid.SafeCopy,
Network.BitFunctor2.Platform.Storage.Object,
Network.BitFunctor2.Platform.Storage.Types,
Network.BitFunctor2.Platform.Storage,
Network.BitFunctor2.Application.Registrar,
Network.BitFunctor2.Application.Registrar.State,
Network.BitFunctor2.Application.Registrar.Storage,
Network.BitFunctor.Account,
Network.BitFunctor.Asset,
Network.BitFunctor.Block,
Network.BitFunctor.Block.Types,
Network.BitFunctor.Crypto.Key,
Network.BitFunctor.Crypto.Key.Types,
Network.BitFunctor.Crypto.Hash,
Network.BitFunctor.Crypto.Hash.Types,
Network.BitFunctor.Crypto.Signing,
Network.BitFunctor.Crypto.Signing.Types,
Network.BitFunctor.Crypto.Types,
Network.BitFunctor.Identifiable,
Network.BitFunctor.MemoryPool,
Network.BitFunctor.State.GlobalLedger,
Network.BitFunctor.State.Ledger,
Network.BitFunctor.State.Pending,
Network.BitFunctor.Transaction,
Network.BitFunctor.Transaction.Types,
Network.BitFunctor.Common
other-modules:
build-depends: base,
bytestring,
base16-bytestring,
aeson,
containers,
unordered-containers,
text,
time,
uuid,
cryptonite,
memory,
binary,
mtl,
transformers,
base64-bytestring,
hashable,
acid-state,
safecopy,
-- bitfunctor-theory compatibility
cereal
hs-source-dirs: src
default-language: Haskell2010
executable bitfunctor-genesis-generator
hs-source-dirs: app/GenesisGenerator
main-is: Main.hs
other-modules: Params
, Version
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, bitfunctor
, optparse-applicative
, gitrev
, mtl
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Network.BitFunctor.Account.Arbitrary
, Network.BitFunctor.Account.Tests
, Network.BitFunctor.Crypto.Arbitrary
, Network.BitFunctor.Block.Arbitrary
, Network.BitFunctor.Block.Tests
, Network.BitFunctor.State.Tests
, Network.BitFunctor.Transaction.Arbitrary
, Network.BitFunctor.Transaction.Tests
, Network.BitFunctor.Tests
ghc-options: -Wall -rtsopts
build-depends: base
, bitfunctor
, cryptonite
, memory
, binary
, HUnit
, QuickCheck
, quickcheck-instances
, tasty
, tasty-hunit
, tasty-quickcheck
hs-source-dirs: test/src
default-language: Haskell2010