-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathads.cabal
More file actions
155 lines (146 loc) · 3.73 KB
/
ads.cabal
File metadata and controls
155 lines (146 loc) · 3.73 KB
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
name: ads
version: 0.1.0.0
-- synopsis:
-- description:
license: GPL-3
license-file: LICENSE
author: Matthias Treydte
maintainer: mt@waldheinz.de
-- copyright:
category: Network
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
data-files:
default-config
flag sandbox
description: Enable building the sandbox
default: False
library
hs-source-dirs: src/lib
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded
c-sources:
src/cbits/rijndael.c,
src/cbits/lzma/lzma.c,
src/cbits/lzma/LzmaDec.c
cc-options: -Wall -O2 -std=c99
exposed-modules:
Codec.Archive.Tar.Read,
Codec.Archive.Tar.Types,
Freenet,
Freenet.Archive,
Freenet.Base64,
Freenet.Chk,
Freenet.Companion,
Freenet.Compression
Freenet.Fetch,
Freenet.Fproxy,
Freenet.Insert,
Freenet.Metadata,
Freenet.Mime,
Freenet.Pcfb,
Freenet.Rijndael,
Freenet.SplitFile,
Freenet.Ssk,
Freenet.Store
Freenet.Types,
Freenet.URI,
Logging,
Net,
Node,
Message,
Peers,
RestApi,
Statistics,
Time,
Types,
Utils
build-depends:
base ==4.*,
aeson >= 0.7,
array >= 0.4,
async >= 2.0,
base16-bytestring >= 0.1,
base64-bytestring >= 1.0,
binary >= 0.5,
binary-conduit >= 1.2,
bytestring >= 0.9,
bzlib >= 0.5,
cipher-aes >= 0.2,
concurrent-extra >= 0.7,
conduit >= 1.0,
conduit-extra >= 1.1,
configurator >= 0.2,
cprng-aes == 0.5.*,
crypto-pubkey >= 0.2,
directory >= 1.2,
fec >= 0.1,
filepath >= 1.3,
hashable >= 1.2,
hslogger >= 1.2,
http-types >= 0.8,
lrucache >= 1.1,
network >= 2.4,
QuickCheck >= 2.7,
random >= 1.0,
SHA >= 1.6,
stm >= 2.4,
stm-chans >= 3.0,
stm-conduit >= 2.2,
text >= 0.11,
time >= 1.1,
transformers >= 0.3,
unix >= 2.6,
unix-bytestring,
unordered-containers >= 0.2,
vector >= 0.10,
void >= 0.6,
wai >= 3.0,
wai-app-static >= 3.0,
wai-extra >= 3.0,
warp >= 3.0,
zip-archive >= 0.2,
zlib >= 0.5
executable ads
hs-source-dirs: src/main
default-language: Haskell2010
main-is: Main.hs
ghc-options: -Wall -threaded
build-depends:
ads, aeson, base, bytestring, configurator, directory, filepath, network,
random, stm, unix, warp
executable ads-sandbox
hs-source-dirs: src/sandbox
default-language: Haskell2010
main-is: Main.hs
ghc-options: -Wall -threaded
if flag(sandbox)
buildable: True
else
buildable: False
build-depends:
ads, base, conduit, mtl, random, stm, stm-conduit,
unordered-containers
test-suite test-ads
type:
exitcode-stdio-1.0
default-language:
Haskell2010
hs-source-dirs:
src/tests
main-is:
Main.hs
ghc-options:
-Wall -threaded
build-depends:
ads,
base >= 4.0,
bytestring,
HUnit >= 1.2,
temporary >= 1.1,
test-framework >= 0.8,
test-framework-hunit >= 0.3,
test-framework-quickcheck2 >= 0.3,
QuickCheck >= 2.0,
stm