-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjassbot.cabal
122 lines (116 loc) · 4.49 KB
/
jassbot.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
cabal-version: >=1.10
-- Initial package description 'jassbot.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: jassbot
version: 1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: GPL-3.0
license-file: LICENSE
author: lep
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: Readme.md
executable j
main-is: j.hs
other-modules: Jass.Ast, Jass.Parser,
Jassbot.DB, Jassbot.Search, Jassbot.Signature, Jassbot.Typeof
Data.Composeable, Jassbot.SearchNG, Jassbot.Parser
build-depends: array ,
base ,
binary ,
containers ,
directory ,
filepath ,
hashable ,
megaparsec ,
mtl ,
parser-combinators ,
transformers ,
optparse-applicative ,
fuzzy, text-metrics, text, relation
-- hs-source-dirs:
default-language: Haskell2010
executable ng
main-is: ng.hs
-- ghc-options:
-- -O
-- -threaded
-- -fprof-auto
-- "-with-rtsopts=-p"
other-modules: Jass.Ast, Jass.Parser,
Jassbot.DB, Jassbot.Search, Jassbot.Signature, Jassbot.Typeof
Data.Composeable, Jassbot.SearchNG, Jassbot.Parser, Jass.Printer
build-depends: array ,
base ,
binary ,
containers ,
directory ,
filepath ,
hashable ,
megaparsec ,
mtl ,
parser-combinators ,
transformers ,
bytestring ,
optparse-applicative ,
network ,
utf8-string ,
HostAndPort ,
wai ,
warp ,
http-types ,
aeson,
fuzzy, text-metrics, text, relation
-- hs-source-dirs:
default-language: Haskell2010
executable web
main-is: web.hs
other-modules: Data.Composeable, Jass.Ast, Jass.Parser, Jassbot.DB,
Jassbot.Search, Jassbot.Signature
build-depends: array ,
base ,
binary ,
bytestring ,
containers ,
directory ,
filepath ,
hashable ,
megaparsec ,
mtl ,
transformers ,
parser-combinators ,
optparse-applicative ,
network ,
utf8-string ,
HostAndPort ,
wai ,
warp ,
http-types ,
aeson
default-language: Haskell2010
executable daemon
main-is: daemon.hs
other-modules: Jass.Ast, Jass.Parser,
Jassbot.DB, Jassbot.Search, Jassbot.Signature, Jassbot.Typeof
Data.Composeable
build-depends: array ,
base ,
binary ,
containers ,
directory ,
utf8-string,
filepath ,
hashable ,
megaparsec ,
mtl ,
transformers ,
parser-combinators ,
transformers ,
bytestring ,
optparse-applicative
-- hs-source-dirs:
default-language: Haskell2010