-
Notifications
You must be signed in to change notification settings - Fork 0
/
edda.cabal
129 lines (123 loc) · 4.59 KB
/
edda.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
name: edda
version: 0.1.0.0
synopsis: Elite Dangerous Network Aggregator
description: Please see README.md
homepage: https://github.com/troydm/edda
license: MIT
license-file: LICENSE
author: Dmitry "troydm" Geurkov
maintainer: d.geurkov@gmail.com
copyright: 2016 Dmitry "troydm" Geurkov
category: Game
build-type: Simple
cabal-version: >=1.10
data-files: edda.conf,
test/EDDA/Schema/commodity1.json,
test/EDDA/Schema/commodity2.json,
test/EDDA/Schema/commodity3.json,
test/EDDA/Schema/outfitting1.json,
test/EDDA/Schema/outfitting2.json,
test/EDDA/Schema/outfitting3.json,
test/EDDA/Schema/outfitting4.json,
test/EDDA/Schema/outfitting5.json,
test/EDDA/Schema/shipyard1.json,
test/EDDA/Schema/shipyard2.json
library
hs-source-dirs: src
exposed-modules: EDDA.Data.Database,
EDDA.Data.Document,
EDDA.Data.Import.EDDB.Stations,
EDDA.Data.Import.EDDB.Systems,
EDDA.Data.Import.EDDB.Util,
EDDA.Data.Query,
EDDA.Data.Subscriber,
EDDA.Data.Cache,
EDDA.Data.Rest,
EDDA.Schema.CommodityV2,
EDDA.Schema.CommodityV3,
EDDA.Schema.OutfittingV1,
EDDA.Schema.OutfittingV2,
EDDA.Schema.Parser,
EDDA.Schema.ShipyardV1,
EDDA.Schema.ShipyardV2,
EDDA.Schema.Util,
EDDA.Types,
EDDA.Config
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
bytestring,
transformers,
mtl,
monad-loops,
text,
unix,
unordered-containers,
vector,
split,
stringsearch,
zlib,
zeromq4-haskell,
scotty,
wai-extra,
aeson,
aeson-pretty,
cassava,
mongoDB,
bson,
attoparsec,
scientific,
time,
iso8601-time,
http-types,
http-client,
http-client-tls,
directory,
ConfigFile,
hslogger,
process,
temporary,
mmap
executable edda
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends: base,
edda,
bytestring,
text,
mtl,
transformers,
unix,
directory,
hslogger,
process,
cmdargs
test-suite edda-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
default-language: Haskell2010
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
other-modules: EDDA.Test.Util,
EDDA.Schema.ParserTest,
EDDA.Schema.CommodityV2Test,
EDDA.Schema.CommodityV3Test,
EDDA.Schema.OutfittingV1Test,
EDDA.Schema.OutfittingV2Test,
EDDA.Schema.ShipyardV1Test,
EDDA.Schema.ShipyardV2Test
build-depends: base,
edda,
HUnit,
bytestring,
transformers,
time,
unordered-containers,
aeson,
hslogger,
test-framework,
test-framework-hunit
source-repository head
type: git
location: https://github.com/troydm/edda