-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbigchaindb.cabal
115 lines (109 loc) · 3.91 KB
/
bigchaindb.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
name: bigchaindb
version: 0.2.0
synopsis: Common code library for BigchainDB
license: Apache-2.0
license-file: LICENSES.md
author: Scott Sadler
maintainer: [email protected]
category: Database
build-type: Simple
cabal-version: >=1.10
Flag so
Description: Build shared object
Manual: True
Default: False
library
exposed-modules: BigchainDB.API,
BigchainDB.API.Http,
BigchainDB.API.Tx,
BigchainDB.API.Utils,
BigchainDB.Crypto,
BigchainDB.Crypto.B58Keys,
BigchainDB.CryptoConditions,
BigchainDB.CryptoConditions.DSL,
BigchainDB.CryptoConditions.DSL.Parse,
BigchainDB.CryptoConditions.DSL.Serialize,
BigchainDB.CryptoConditions.Types,
BigchainDB.Data.Aeson,
BigchainDB.Data.Utils,
BigchainDB.Errors,
BigchainDB.Prelude,
BigchainDB.Transaction,
BigchainDB.Transaction.Sign,
BigchainDB.Transaction.Types,
BigchainDB.Transaction.Transfer
build-depends: base,
aeson,
aeson-quick,
text,
bytestring,
base58-bytestring,
cryptonite,
cryptoconditions,
http-client,
http-conduit,
unordered-containers,
microlens,
microlens-platform,
microlens-aeson,
transformers,
memory,
attoparsec,
containers,
base64-bytestring,
aeson-pretty
hs-source-dirs: src
if flag(so)
exposed-modules: BigchainDB.FFI
--extra-libraries: HSrts-ghc8.0.1
--ghc-options: lHSrts-ghc8.0.1
C-sources: src/module_init.c
cpp-options: -DMODULE=libbigchaindb_shared
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests
build-depends: bigchaindb,
base,
aeson,
aeson-quick,
text,
bytestring,
cryptonite,
microlens,
microlens-platform,
microlens-aeson,
transformers,
memory,
attoparsec,
containers,
base64-bytestring,
base58-bytestring,
random,
tasty,
tasty-hunit,
tasty-golden,
smallcheck,
tasty-smallcheck
default-language: Haskell2010
executable profile-main
buildable: False
main-is: Profile.hs
hs-source-dirs: tests
build-depends: bigchaindb,
base,
aeson,
text,
bytestring,
base58-bytestring,
cryptonite,
microlens,
microlens-platform,
microlens-aeson,
transformers,
memory,
attoparsec,
containers,
base64-bytestring
default-language: Haskell2010