-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathisoxya-plugin-spellchecker.cabal
147 lines (147 loc) · 4.35 KB
/
isoxya-plugin-spellchecker.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
cabal-version: 3.0
name: isoxya-plugin-spellchecker
version: 0.0.0
synopsis: Isoxya plugin Spellchecker
license: BSD-3-Clause
author: Nic Williams <[email protected]>
maintainer: Nic Williams <[email protected]>
--------------------------------------------------------------------------------
common common-properties
build-depends:
base ^>= 4.14.3.0,
relude
mixins:
base hiding (Prelude),
relude (Relude as Prelude)
default-language: Haskell2010
default-extensions:
OverloadedStrings
ghc-options:
-Wall
-Werror
-Wunused-packages
--------------------------------------------------------------------------------
library lib-common
import: common-properties
exposed-modules:
TiredPixel.Common.Isoxya.Processor
TiredPixel.Common.Isoxya.Snap.Processor
TiredPixel.Common.Snap.CoreUtil
TiredPixel.Common.Snap.Main
TiredPixel.Common.URI
other-modules:
TiredPixel.Common.Cursor
build-depends:
aeson,
base64-bytestring,
bytestring,
http-conduit,
network-uri,
regex-compat,
safe,
snap-core,
snap-extras,
snap-server,
time,
unix,
unordered-containers,
hs-source-dirs:
lib/common/src
--------------------------------------------------------------------------------
library lib-isoxya-plugin-spellchecker
import: common-properties
exposed-modules:
Isoxya.Plugin.Spellchecker
Isoxya.Plugin.Spellchecker.Core
other-modules:
Isoxya.Plugin.Spellchecker.Checker
Isoxya.Plugin.Spellchecker.Endpoint.Apex
Isoxya.Plugin.Spellchecker.Endpoint.Data
Isoxya.Plugin.Spellchecker.Init
Isoxya.Plugin.Spellchecker.Parser
Isoxya.Plugin.Spellchecker.Resource
Isoxya.Plugin.Spellchecker.Type
Paths_isoxya_plugin_spellchecker
build-depends:
aeson,
containers,
hxt,
lens,
lib-common,
process-extras,
snap,
snap-core,
snap-extras,
text,
time,
hs-source-dirs:
src
--------------------------------------------------------------------------------
executable isoxya-plugin-spellchecker
import: common-properties
main-is: Spellchecker.hs
other-modules:
Paths_isoxya_plugin_spellchecker
build-depends:
lens,
lib-common,
lib-isoxya-plugin-spellchecker,
snap,
hs-source-dirs:
src/Isoxya/Plugin/Bin
--------------------------------------------------------------------------------
library lib-common-test
import: common-properties
exposed-modules:
TiredPixel.Common.Snap.Test
other-modules:
TiredPixel.Common.Snap.TestUtil
build-depends:
aeson,
base64-bytestring,
bytestring,
containers,
directory,
filepath,
hspec == 2.*,
hspec-core,
hspec-snap,
http-link-header,
lens,
lens-aeson,
mtl,
network-uri,
process,
snap-core,
text,
unordered-containers,
vector,
hs-source-dirs:
lib/common/test
--------------------------------------------------------------------------------
test-suite test-isoxya-plugin-spellchecker
import: common-properties
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Isoxya.Plugin.Spellchecker.CheckerSpec
Isoxya.Plugin.Spellchecker.Endpoint.ApexSpec
Isoxya.Plugin.Spellchecker.Endpoint.DataSpec
Isoxya.Plugin.Spellchecker.ParserSpec
Isoxya.Plugin.Spellchecker.Test
build-depends:
containers,
hspec == 2.*,
lib-common,
lib-common-test,
lib-isoxya-plugin-spellchecker,
network-uri,
text,
default-extensions:
NoImplicitPrelude
hs-source-dirs:
test
build-tool-depends:
hlint:hlint,
hspec-discover:hspec-discover == 2.*,
stylish-haskell:stylish-haskell,